-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (27 loc) · 952 Bytes
/
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
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["**.__pycache__"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
license = { text = "GPL-3.0-only" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
]
name = "pyprojectlib"
version = "0.0.4"
authors = [{ name = "Jason Krist", email = "jkrist2696@gmail.com" }]
description = ""
requires-python = ">=3.6"
dependencies = ["cleandoc>=0.0.13","GitPython>=3.1.40","pipreqs>=0.4.13","pytest>=7.4.3","build","twine","tomli","tomli-w","types-requests","types-setuptools"]
[tool.setuptools.package-data]
pyprojectlib = ["*.typed", "*.template"]
[project.scripts]
ppl="pyprojectlib:cli_main"
[project.urls]
"Homepage" = "https://github.com/jkrist2696/pyprojectlib"