-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
73 lines (64 loc) · 2.33 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
69
70
71
72
73
# SPDX-FileCopyrightText: 2022 Tanguy Fardet
# SPDX-License-Identifier: CC0-1.0
[build-system]
requires = ["setuptools>=61.0", "numpy>=1.17", "cython>=0.18"]
build-backend = "setuptools.build_meta"
[project]
name = "NNGT"
authors = [
{ name="Tanguy Fardet", email="tanguyfardet@protonmail.com" },
]
license = {file = "LICENSES/GPL-3.0-or-later.txt"}
description = """Python package to generate and study graphs and detailed
spatial or biological networks."""
readme = "README.md"
keywords = [
"network", "graph", "structure", "igraph", "graph-tool", "networkx",
"simulation", "neuron", "NEST", "DeNSE", "topology", "growth", "geospatial"
]
requires-python = ">=3.7"
dynamic = ["dependencies", "version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Programming Language :: C++",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Physics"
]
[project.urls]
repository = "https://git.sr.ht/~tfardet/NNGT"
documentation = "https://nngt.readthedocs.io/en/stable"
[project.optional-dependencies]
matplotlib = ["matplotlib"]
nx = ["networkx>=2.4"]
ig = ["igraph"]
geometry = ["matplotlib", "shapely>=2", "dxfgrabber", "svg.path"]
geospatial = ["matplotlib", "geopandas", "descartes", "cartopy>=0.20"]
full = [
"networkx>=2.4", "shapely>=2", "dxfgrabber", "svg.path>=4", "matplotlib",
"geopandas", "descartes", "cartopy>=0.20", "lxml"
]
[tool.setuptools]
package-dir = {"" = "."}
include-package-data = false
license-files = ["LICENSES/*.txt"]
[tool.setuptools.packages.find]
where = ["."]
include = ["nngt*"]
[tool.setuptools.package-data]
"*" = ["README.md"]
"nngt" = ["nngt.conf.default"]
"nngt.generation" = ["*.p*", "func_connect.cpp", "func_connect.h"]
[tool.setuptools.cmdclass]
build_ext = "setup.build_ext"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "nngt.__version__"}