-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
68 lines (63 loc) · 2.08 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = [
'setuptools>=61.2',
'setuptools_scm[toml]>=6.0',
]
build-backend = "setuptools.build_meta"
[project]
name = "cutgeneratingfunctionology"
description = "Python code for computation and experimentation with cut-generating functions"
authors = [
{name = "Matthias Koeppe", email = "[email protected]"},
{name = "Yuan Zhou"},
{name = "Chun Yu Hong"},
{name = "Jiawei Wang"},
{name = "with contributions by undergraduate programmers"},
]
dependencies = []
requires-python = ">=3.9"
license = {text = "GPLv2+"}
keywords = ["integer programming", "cutting planes"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
]
dynamic = ['version']
[project.optional-dependencies]
doc = [
"cutgeneratingfunctionology[passagemath]",
"sage-package",
"sphinx",
"sphinxcontrib-bibtex",
]
passagemath = [
"passagemath-pari",
"passagemath-polyhedra",
"passagemath-plot",
"passagemath-repl",
"passagemath-flint",
"passagemath-graphs",
"passagemath-singular",
"passagemath-symbolics",
]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/mkoeppe/cutgeneratingfunctionology"
Documentation = "http://mkoeppe.github.io/cutgeneratingfunctionology/doc/html/"
Source = "https://github.com/mkoeppe/cutgeneratingfunctionology"
"Issue Tracker" = "https://github.com/mkoeppe/cutgeneratingfunctionology/issues"
"Demo on mybinder.org" = "https://mybinder.org/v2/gh/mkoeppe/cutgeneratingfunctionology/master?filepath=demo.ipynb"
[tool.setuptools_scm]
write_to = 'version.txt'
version_scheme = 'post-release'
local_scheme = 'dirty-tag'