-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (68 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "dj_sinp_organisms"
version = "1.4.1"
description = "Django app to manage french SINP organisms standard"
authors = ["dbChiro project", "hypsug0"]
license = "AGPLv3"
keywords = ["SINP", "Nomenclatures", "Django", "France", "dbChiroWeb"]
readme = "README.md"
homepage = "https://github.com/dbchiro/DjangoSinpOrganisms"
repository = "https://github.com/dbchiro/DjangoSinpOrganisms"
documentation = "https://dbchiro.github.io/DjangoSinpOrganisms/"
include = ["LICENSE"]
packages = [{ include = "sinp_organisms" }]
[tool.poetry.dependencies]
python = ">=3.9.0,<4.0"
Django = ">=3.2"
djangorestframework = "^3"
dj-sinp-nomenclatures = ">=0.0.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.12.1,<25.0.0"
isort = "^5.13.2"
flake8 = ">=6.1,<8.0"
flake8-isort = "^6.1.1"
pre-commit = "^3.5"
python-decouple = "^3.8"
psycopg2-binary = "^2.9.9"
drf-yasg = "^1.21.8"
dj-database-url = "^2.1.0"
#dj-sinp-nomenclatures = { path = "../dj_sinp_nomenclatures", develop = true }
bpython = "^0.24"
django-fixture-magic = "^0.1.5"
coverage = "^7.4.4"
django-extensions = "^3.2.3"
[tool.poetry.group.docs.dependencies]
sphinx = ">=6,<8"
sphinx-rtd-theme = "^2.0.0"
rstcheck = "^6.2.0"
myst-parser = "^2.0.0"
[tool.isort]
include_trailing_comma = true
line_length = 79
multi_line_output = 3
profile = "black"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
include = '\.pyi?$'
line-length = 79
target-version = ['py38']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"