-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 1.15 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sparks-ai"
version = "0.1.1"
authors = [
{ name="Nicolas Skatchkovsky", email="[email protected]" },
]
keywords = ["Computational neuroscience", "Artificial Intelligence", "GenAI"]
description = "Sequential Predictive Attention for the Representation of SpiKing Signals"
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.9"
classifiers = ["Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent"
]
dependencies = ["scikit-learn",
"scipy",
"torch",
"tqdm",
"matplotlib",
"numpy"]
[tool.setuptools.packages]
find = {}
[project.urls]
Homepage = "https://github.com/FrancisCrickInstitute/SPARKS"
Issues = "https://github.com/FrancisCrickInstitute/SPARKS/issues"
[project.optional-dependencies]
scripts = ["nlb_tools", "allen_sdk", "jupyter"]