-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (41 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "spikexplore"
version = "0.2.0"
authors = [
{name = "Nicolas Aspert", email = "nicolas.aspert@epfl.ch"},
{name = "Benjamin Ricaud", email = "benjamin.ricaud@uit.no"},
]
license = {text = "Apache license"}
description = "Graph exploration using inhomogeneous filtered diffusion"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
]
urls = {Homepage = "https://gitlab.switch.ch/imi-sad/spikexplore"}
requires-python = ">=3.8"
dependencies = [
"pandas",
"numpy",
"networkx",
"tqdm",
"atproto",
"wikipedia-api",
"python-louvain",
]
[project.optional-dependencies]
dev = [
"pytest",
"black==24.8.0"
]
[tool.setuptools]
packages = ["spikexplore", "spikexplore.backends"]
script-files = []
include-package-data = false