-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 974 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
30
31
32
33
34
35
36
37
38
[build-system]
requires = ["setuptools >= 70.0"]
build-backend = "setuptools.build_meta"
[project]
name = "constrainthg"
version = "0.2.2"
dependencies = [
"numpy"
]
requires-python = ">=3.1"
authors = [
{name = "John Morris", email = "[email protected]"},
]
description = "Kernel for building and simulating constraint hypergraphs."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE*"]
keywords = ["hypergraphs", "systems engineering"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/jmorris335/ConstraintHg/wiki"
Documentation = "https://constrainthg.readthedocs.io/en/latest/"
Repository = "https://github.com/jmorris335/ConstraintHg"
"Bug Tracker" = "https://github.com/jmorris335/ConstraintHg/issues"
[project.scripts]
constrainthg-cli = "constrainthg:main_cli"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]