-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
29 lines (25 loc) · 928 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "matroid-database"
version = "0.3"
description = "Python interface to matroid database"
readme = "README.rst"
requires-python = ">=3.9"
keywords = ["mathematics", "combinatorics", "matroids"]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/gmou3/matroid-database"
Documentation = "https://github.com/gmou3/matroid-database/blob/main/README.rst"
Repository = "https://github.com/gmou3/matroid-database.git"
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-glob='*.rst'"