-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
74 lines (69 loc) · 1.6 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "arches-for-science"
readme = "README.md"
authors = [
{name = "Farallon Geographics, Inc", email = "[email protected]"}
]
license = {text = "GNU AGPL3"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.10"
dependencies = [
"arches>=7.6.3,<8",
"supervisor==4.2.1",
"django-pgtrigger==4.9.0",
"django-storages==1.13.2",
"boto3==1.25.3",
"arches-templating>=0.1.2",
]
version = "2.0.0"
[project.optional-dependencies]
dev = [
"livereload",
"sst",
"coverage",
"django-silk==5.1.0",
"pre-commit",
"black==24.4.2",
]
[tool.setuptools]
packages = ["arches_for_science"]
[tool.black]
line-length = 140
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pylint."messages control"]
disable = [
"no-member", # Django false positives
"no-self-argument", # Django false positives
]