-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "spikexplore" | ||
version = "0.2.0" | ||
authors = [ | ||
{name = "Nicolas Aspert", email = "[email protected]"}, | ||
{name = "Benjamin Ricaud", email = "[email protected]"}, | ||
] | ||
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", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = ["spikexplore", "spikexplore.backends"] | ||
script-files = [] | ||
include-package-data = false |