Skip to content

Commit d005519

Browse files
committed
Create pyproject.toml
1 parent 61b90e6 commit d005519

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

pyproject.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[tool.black]
2+
line-length = 88
3+
4+
[tool.mypy]
5+
exclude = "tests"
6+
7+
[tool.setuptools.packages.find]
8+
where = ["src"]
9+
include = ["unittest_extensions"]
10+
exclude = ["unittest_extensions.tests"]
11+
namespaces = false
12+
13+
[build-system]
14+
requires = ["setuptools"]
15+
build-backend = "setuptools.build_meta"
16+
17+
[project]
18+
name = "unittest-extensions"
19+
version = "0.0.1"
20+
authors = [
21+
{ name="Maximos Nikiforakis", email="[email protected]" },
22+
]
23+
description = "Extension of Python's standard unittest library"
24+
readme = "README.md"
25+
classifiers = [
26+
"Programming Language :: Python :: 3",
27+
"License :: OSI Approved :: MIT License",
28+
"Operating System :: OS Independent",
29+
]
30+
31+
[project.urls]
32+
Homepage = "https://github.com/Maxcode123/unittest-extensions"
33+
Issues = "https://github.com/Maxcode123/unittest-extensions/issues"

0 commit comments

Comments
 (0)