-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
[project]
name = "icebug"
version = "12.9"
description = "High performance graph analytics backed by read-only memory"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "License.txt"}
keywords =["graph algorithm", "network analysis", "social network", "apache arrow", "columnar"]
authors = [
{name = "Christian L. Staudt"},
{name = "Henning Meyerhenke"},
{name = "Arun Sharma"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Environment :: Other Environment",
"Framework :: IPython",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"cython>=3.1.0",
"duckdb",
"scipy",
"numpy",
"pyarrow>=24.0.0,<25.0",
"icebug-format>=1.0.0",
"pytest"
]
[project.optional-dependencies]
test = ["pytest", "pandas", "networkx"]
vizbridges = ["ipycytoscape", "plotly", "seaborn", "anywidget", "tabulate"]
pytest = ["pytest", "pandas", "networkx", "ipycytoscape", "plotly", "seaborn", "anywidget", "tabulate"]
[project.urls]
homepage = "https://github.com/Ladybug-Memory/icebug"
documentation = "https://networkit.github.io/dev-docs/index.html"
repository = "https://github.com/Ladybug-Memory/icebug"
changelog = "https://github.com/Ladybug-Memory/icebug/blob/master/CHANGES.md"
[tool.pytest.ini_options]
testpaths = ["networkit/test"]
addopts = ["--ignore=extlibs"]
[build-system]
requires = [
"cython>=3.1.0",
"numpy",
"setuptools",
"wheel"
]