-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1.02 KB
/
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
[build-system]
requires = ["setuptools >= 61.0", "wheel >= 0.29.0"]
build-backend = "setuptools.build_meta"
[project]
name = "riemann"
version = "1.0.0-b.1"
authors = [
{ name="Jacob Lee", email="[email protected]" },
]
description = "A package for computing Riemann summations in n-dimensional space"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.urls]
"Homepage" = "https://github.com/JacobLee23/riemann"
"Documentation" = "https://riemann-py.readthedocs.io/en/latest/"
"Issue Tracker" = "https://github.com/JacobLee23/riemann/issues/"
[tools.setuptools]
py-modules = ["riemann"]