-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 981 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 981 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
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools>=80.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "primes"
version = "0.1.0"
description = "A Python package for prime number utilities"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "Mani Amoozadeh", email = "mani.amoozadeh2@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
# Dependencies for runtime
dependencies = []
[project.optional-dependencies]
dev = [
"build",
"twine",
"black",
"pylint",
"mypy",
"bandit",
"pip-audit",
"ruff",
"pytest",
"pytest-cov",
"coverage",
"sphinx",
"sphinx-autodoc-typehints",
"furo",
]
[project.urls]
Homepage = "https://github.com/ManiAm/primes-python"
Issues = "https://github.com/ManiAm/primes-python/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]