-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.44 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
[build-system]
requires = ["setuptools", "wheel", "Cython>=0.29.0", "numpy >= 1.20.0"]
build-backend = "setuptools.build_meta"
[project]
name = "graphflow"
version = "0.6.2"
authors = [
{name = "Kwan Yuet Stephen Ho", email = "[email protected]"}
]
description = "Algorithms for Graph Flow Analysis"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
keywords = ["network", "graph"]
requires-python = ">=3.8"
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Cython",
"Programming Language :: C",
"License :: OSI Approved :: MIT License",
]
dependencies = ["Cython>=0.29.0", "numpy>=1.20.0", "networkx>=3.0", "sparse>=0.10.0"]
[project.urls]
Repository = "https://github.com/stephenhky/GraphFlow"
Issues = "https://github.com/stephenhky/GraphFlow/issues"
[tool.setuptools]
packages = [
"graphflow",
"graphflow.pagerank",
"graphflow.simvoltage",
"graphflow.hits"
]
zip-safe = false
[project.optional-dependencies]
test = ["unittest2", "pytest", "pytest-cython", "pandas"]