-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
36 lines (30 loc) · 928 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
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "makepackage"
version = "0.2.1"
authors = [
{ name = "Nyggus", email = "[email protected]" },
{ name = "Patrick Boateng", email = "[email protected]" },
]
description = "Creating a structure of a simple Python package"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
dependencies = ["easycheck"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/nyggus/makepackage/"
[tool.setuptools]
packages = ["makepackage"]
[project.scripts]
makepackage = "makepackage.__main__:main"
[project.optional-dependencies]
dev = ["wheel", "black", "pytest", "mypy", "setuptools"]
[tool.black]
line-length = 79