-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject-validator.toml
More file actions
69 lines (62 loc) · 1.89 KB
/
pyproject-validator.toml
File metadata and controls
69 lines (62 loc) · 1.89 KB
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
[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.build_meta"
[project]
name = "subvortex"
dynamic = ["version"]
description = "SubVortex Validator"
authors = [{ name = "Eclipse Vortex", email = "subvortex.bt@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.setuptools.dynamic]
version = { attr = "subvortex.validator.version.__version__" }
[project.license]
text = "MIT"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = [
"scripts",
"subvortex",
"subvortex.core",
"subvortex.validator",
"subvortex.scripts",
]
[tool.setuptools.package-data]
"scripts" = ["**/utils/*.sh"]
"subvortex" = ["pyproject.toml"]
"subvortex.validator" = [
"**/*.py",
"**/deployment/**/*",
"**/scripts/**/*",
"**/pyproject.toml",
"**/requirements.txt",
"**/README.md",
"**/env.template",
"**/docker-compose.yml",
"**/metadata.json",
"**/manifest.json",
]
"subvortex.core" = ["**/*.py"]
"subvortex.scripts" = ["**/*.sh"]
[tool.setuptools.exclude-package-data]
"subvortex" = ["**/venv/*", "**/.venv/*"]
"subvortex.validator" = ["**/venv/*", "**/.venv/*"]
"subvortex.core" = ["**/venv/*", "**/.venv/*"]