-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.67 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "tethys-template"
authors = [{name = "Pat Sagan", email = "[email protected]"}]
description = "A python package template with tox testing environments."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["tethys-template"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Framework :: Flake8",
"Framework :: Pytest",
"Framework :: tox",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Typing :: Typed",
]
dependencies = ["click", "tox"]
dynamic = ["version"]
[project.optional-dependencies]
all = [
"tethys-template[build]",
"tethys-template[docs]",
"tethys-template[lint]",
"tethys-template[test]",
]
build = [
"build",
"twine",
]
docs = [
"furo",
"sphinx",
]
lint = [
"bandit[toml]",
"flake8",
"flake8-bugbear",
"importlib-metadata", # required for type stubs
"mypy",
"pydocstyle",
"types-click",
"types-requests",
"sphinx", # required for type stubs
"validate-pyproject",
]
test = [
"pytest",
"pytest-cov",
]
[project.scripts]
tethys = "tethys.cmd.cli:main"
[project.urls]
Code = "https://github.com/pcsagan/tethys"
Issues = "https://github.com/pcsagan/tethys/issues"
Actions = "https://github.com/pcsagan/tethys/actions"
[tool.setuptools.dynamic]
version = {attr = "tethys.__version__"}
[tool.pydocstringformatter]
write = true