-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
43 lines (33 loc) · 1.18 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "maco"
dynamic = ["version", "readme", "dependencies"]
requires-python = ">=3.8"
authors = [{ name = "sl-govau" }]
maintainers = [{ name = "cccs-rs" }]
license = { file = "LICENSE.md" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
maco = "maco.cli:main"
[project.urls]
Repository = "https://github.com/CybercentreCanada/Maco"
Issues = "https://github.com/CybercentreCanada/Maco/issues"
[tool.setuptools_scm]
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
where = ["."]
exclude = ["test", "tests", "extractors", "model_setup"]