-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
43 lines (35 loc) · 1.29 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
[build-system]
requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm"]
[project]
name = "glpk"
description = "PyGLPK, a Python module encapsulating GLPK"
dynamic = ["version"]
authors = [{ name = "Thomas Finley", email = "[email protected]"}]
maintainers = [
{name = "Bradford D. Boyle", email = "[email protected]"}
]
license = {text = "GPL-3.0"}
readme = "README.rst"
keywords = ["glpk", "optimization"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: C",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3"
[project.urls]
Homepage = "https://github.com/bradfordboyle/pyglpk"
Repository = "https://github.com/bradfordboyle/pyglpk"
Documentation = "https://pyglpk.readthedocs.io/"
Issues = "https://github.com/bradfordboyle/pyglpk/issues"
[tool.setuptools_scm]