This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.51 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
49
50
51
52
53
54
55
56
[tool.poetry]
name = "statute-patterns"
version = "0.2.5"
description = "Philippine statutory law pattern matching and unit retrieval."
authors = ["Marcelino G. Veloso III <mars@veloso.one>"]
readme = "README.md"
homepage = "https://lawsql.com"
repository = "https://github.com/justmars/statute-patterns"
documentation = "https://justmars.github.io/statute-patterns"
classifiers = [
"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"
python-dotenv = "^1.0"
pydantic = "^1.10.7"
python-slugify = "^8.0"
python-dateutil = "^2.8.2"
email-validator = "^2.0.0.post2"
[tool.poetry.dev-dependencies]
rich = "^13.3"
pytest = "^7.2"
pytest-datadir = "^1.4.1"
pytest-cov = "^2.12.1"
pre-commit = "^2.21"
types-Markdown = "^3.4.0"
types-PyYAML = "^6.0.7"
types-python-slugify = "^5.0.4"
types-python-dateutil = "^2.8.19.2"
mkdocs = "^1.4.2"
mkdocstrings = { extras = ["python"], version = "^0.20.0" }
mkdocs-material = "^9.1.0"
[tool.pytest.ini_options]
minversion = "7.2"
addopts = "-ra -q --doctest-modules --cov"
filterwarnings = [
"ignore::DeprecationWarning", # DeprecationWarning: pkg_resources is deprecated as an API
]
testpaths = ["tests", "statute_patterns"]
[tool.ruff]
ignore = ["F401"]
fixable = ["F", "E", "W", "I001"]
select = ["F", "E", "W", "I001"]
[build-system]
requires = ["poetry-core>=1.3.2"]
build-backend = "poetry.core.masonry.api"