-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
78 lines (68 loc) · 1.48 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "convast"
dynamic = ["version"]
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
]
authors = [
{name = "Finlay Maguire", email = "[email protected]"},
{name = "Amos Raphenya", email = "[email protected]"},]
requires-python = ">=3.8"
dependencies = [
# Add your own dependencies here
]
license = {file = "LICENSE"}
[project.scripts]
convast = "convast.cli:main"
[project.urls]
Homepage = "https://github.com/pha4ge/convast"
Repository = "https://github.com/pha4ge/convast"
Changelog = "https://github.com/pha4ge/convast/blob/main/CHANGELOG.md"
# Documentation = "https://my-package.readthedocs.io/"
[project.optional-dependencies]
dev = [
"ruff",
"black",
"pytest",
"twine>=1.11.0",
"build",
"setuptools",
"wheel",
"packaging"
]
[tool.setuptools.packages.find]
exclude = [
"*.tests",
"*.tests.*",
"tests.*",
"tests",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "convast.version.VERSION"}
[tool.black]
line-length = 115
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \.git
| \.pytest_cache
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[tool.ruff]
line-length = 115
target-version = "py39"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.pytest.ini_options]
testpaths = "tests/"