-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.61 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
[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.build_meta"
[project]
name = "subvortex"
dynamic = ["version"]
description = "SubVortex Auto Upgrader"
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.version.__version__" }
[project.license]
text = "MIT"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["subvortex", "subvortex.auto_upgrader"]
[tool.setuptools.package-data]
"subvortex" = ["pyproject.toml"]
"subvortex.auto_upgrader" = [
"**/*.py",
"**/deployment/**/*",
"**/pyproject.toml",
"**/requirements.txt",
"**/README.md",
"**/env.template",
"**/docker-compose.yml",
]
[tool.setuptools.exclude-package-data]
"subvortex" = ["**/venv/*", "**/.venv/*"]
"subvortex.auto_upgrader" = ["**/venv/*", "**/.venv/*"]