-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (33 loc) · 945 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.2",
"Cython",
"cysignals",
]
build-backend = "setuptools.build_meta"
[project]
name = "primecountpy"
version = "0.1.0"
description = "Cython interface for C++ primecount library"
authors = [
{name = "SageMath Developers", email = "[email protected]"},
]
dependencies = [
"cysignals",
]
requires-python = ">=3.7"
license = {text = "GPLv3"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/dimpase/primecountpy"
"User Manual" = "https://primecountpy.readthedocs.io"
"Bug Tracker" = "https://github.com/dimpase/primecountpy/issues"