generated from allenai/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
121 lines (107 loc) · 2.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "beaker-gantry"
dynamic = ["version"]
readme = "README.md"
description = "Gantry streamlines running Python experiments in Beaker by managing containers and boilerplate for you"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
authors = [
{ name = "Allen Institute for Artificial Intelligence", email = "[email protected]" },
{ name = "Pete Walsh", email = "[email protected]" },
]
license = {file = "LICENSE"}
requires-python = ">3.7"
dependencies = [
"beaker-py>=1.30.0,<2.0",
"GitPython>=3.0,<4.0",
"rich",
"click",
"click-help-colors",
"petname>=2.6,<3.0",
"requests",
"packaging",
]
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.6",
"types-requests",
"black>=23.0,<24.0",
"isort>=5.11,<5.13",
"pytest",
"twine>=1.11.0",
"build",
"setuptools",
"wheel",
"packaging",
]
[project.scripts]
gantry = "gantry.__main__:main"
[project.urls]
homepage = "https://github.com/allenai/beaker-gantry"
repository = "https://github.com/allenai/beaker-gantry"
[tool.setuptools.packages.find]
exclude = [
"*.tests",
"*.tests.*",
"tests.*",
"tests",
"test_fixtures",
"test_fixtures.*",
"scripts*",
"examples*"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
gantry = ["py.typed", "entrypoint.sh"]
[tool.setuptools.dynamic]
version = {attr = "gantry.version.VERSION"}
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.ruff]
line-length = 120
ignore = ["F403", "F405", "E501"]
[tool.mypy]
ignore_missing_imports = true
no_site_packages = false
allow_redefinition = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
strict_optional = false
[tool.pytest.ini_options]
testpaths = [
"tests/",
]
python_classes = [
"Test*",
"*Test",
]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"
markers = []
filterwarnings = []