-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (48 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
60 lines (48 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
#### Build Configuration ##################################################
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
#### Project Configuration ################################################
[project]
name = "pathlims"
dynamic = ["version"]
description = "A package to study the limits of pathlength and efficiency of complex networks."
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Gorka Zamora-López", email = "gorka@Zamora-Lopez.xyz" },
{ name = "Romain Brasselet" },
]
keywords = [ "graph theory", "complex networks", "network analysis" ]
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 :: Only",
"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/PathLims"
"Source Code" = "https://github.com/gorkazl/PathLims"
"Bug Tracker" = "https://github.com/gorkazl/PathLims/issues"
Documentation = "https://github.com/gorkazl/PahLims/blob/main/README.md"
#### Tool Configuration ##################################################ç
[tool.hatch.version]
path = "src/pathlims/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"src/pathlims",
"Figs/",
]