-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 968 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
39
40
41
42
43
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "gentopo"
dynamic = ["version"]
dependencies = [
"networkx==3.2.1",
"numpy==1.26.2",
"click",
]
requires-python = ">=3.10"
authors = [
{name = "Ari Dyckovsky", email="[email protected]"},
]
maintainers = [
{name = "Ari Dyckovsky", email="[email protected]"},
]
description = "Generate network topologies and underlying sequences of interactions that lead to them."
keywords = [
"networks", "interaction", "social science", "topology",
]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.com/comanlab/gentopo"
Repository = "https://github.com/comanlab/gentopo.git"
[tool.hatch.version]
path = "src/gentopo/__about__.py"
[tool.hatch.envs.default]
dependencies = [
"pytest",
]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"