-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (31 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
34
[build-system]
requires = [
"setuptools>=59",
]
build-backend = "setuptools.build_meta"
[project]
name = "snappy_manifolds"
description = "Database of snappy manifolds"
authors = [
{name = "Marc Culler", email = "[email protected]"},
{name = "Nathan M. Dunfield", email = "[email protected]"},
{name = "Matthias Goerner", email = "[email protected]"},
{name = "Malik Obeidin" }
]
readme = "README.rst"
license = {text = "GPLv2+"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/3-manifolds/snappy_manifolds"
[tool.setuptools.dynamic]
version = {attr = "snappy_manifolds.__version__"}