-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.41 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netdynflow"
dynamic = ["version"]
description = "A package to study complex networks based on temporal flow propagations."
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Gorka Zamora-Lopez", email = "gorka@zamora-lopez.xyz" },
{ name = "Matthieu Gilson", email = "matthieu.gilson@univ-amu.fr" },
{ name = "Nikos Kouvaris" },
]
keywords = [ "graph theory", "complex networks", "network analysis", "weighted networks" ]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.6",
"scipy",
]
[project.urls]
Homepage = "https://github.com/gorkazl/NetDynFlow"
[tool.hatch.version]
path = "netdynflow/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/netdynflow",
]