-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 858 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 858 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project.scripts]
pipslim = "pipslim:run"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"pipslim" = ["*.ps1"]
[project]
name = "pipslim"
# version = "v1.0.0"
dynamic = ["version"]
authors = [
{ name="Mitch Naake", email="mitch@neutron.au" }
]
description = "Create high-order dependency requirement.txt files"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"setuptools>=61.0",
"pip>=22.2"
]
[tool.setuptools_scm]
[project.urls]
"GitHub" = "http://github.com/mitch0s/pipslim"
"Bug Tracker" = "https://github.com/mitch0s/pipslim/issues"