-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.34 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "citation-report"
version = "0.1.7"
description = "Regex formula of Philippine Supreme Court citations in report format, i.e. SCRA, PHIL, OFFG."
authors = ["Marcelino G. Veloso III <[email protected]>"]
homepage = "https://lawsql.com"
repository = "https://github.com/justmars/citation-report"
documentation = "https://justmars.github.io/citation-report"
classifiers = [
"Topic :: Text Processing :: General",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Legal Industry",
"Framework :: Pydantic",
"Framework :: Pytest",
]
[tool.poetry.dependencies]
python = "^3.11"
citation-date = "^0.1.5"
pydantic = "^2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
pytest-cov = "^2.12.1"
pre-commit = "^3.3"
mkdocs = "^1.4.3"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
mkdocs-material = "^9.1.15"
ipykernel = "^6.23.3"
[tool.pytest.ini_options]
minversion = "7.3"
addopts = "-ra -q --cov --doctest-modules"
filterwarnings = [
"ignore::DeprecationWarning", # DeprecationWarning: pkg_resources is deprecated as an API
]
testpaths = ["tests", "citation_report"]
[tool.ruff]
ignore = ["F401", "F403"]
fixable = ["F", "E", "W", "I001"]
select = ["F", "E", "W", "I001"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"