-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.43 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-dotnet-tools"
version = "0.1.0"
description = "CLI helpers to build, clean, test, and bump versions for .NET projects"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Your Name", email = "you@example.com" }]
license = { text = "MIT" }
keywords = ["dotnet", "cli", "build", "test", "coverage"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
# No runtime deps; these scripts call external tools (dotnet, reportgenerator) which must be installed separately.
dependencies = []
[project.urls]
Homepage = "https://github.com/your/repo"
[project.scripts]
python-dotnet-tools = "cli:main"
python-dotnet-build = "commands.build:main"
python-dotnet-clean = "commands.clean:main"
python-dotnet-test = "commands.test:main"
python-dotnet-bump = "commands.bump:main"
python-dotnet-tag = "commands.tag:main"
python-dotnet-init-lib = "commands.init_lib:main"
python-dotnet-init-min = "commands.init_min:main"
python-dotnet-init-proj = "commands.init_proj:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["cli"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"commands._data" = [
"templates/*",
"parameters/*"
]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__", "*.pyc"]