-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (42 loc) · 1.22 KB
/
setup.py
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
from setuptools import setup, find_packages
from sapicore import __version__
with open("README.md") as f:
long_description = f.read()
setup(
name="sapicore",
version=__version__,
description="A framework for spiking neural network modeling. ",
long_description=long_description,
url="https://github.com/cplab/sapicore",
author="Roy Moyal, Matthew Einhorn, Jeremy Forest, Ayon Borthakur, Thomas Cleland",
author_email="rm875@cornell.edu, me263@cornell.edu, jerem.forest@gmail.com, ayon.borthakur@ai.iith.ac.in, "
"tac29@cornell.edu",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(),
install_requires=[
"h5py",
"numpy<2.0",
"scipy",
"pandas",
"torch",
"tensorboard",
"networkx",
"scikit-learn",
"matplotlib",
"PyYAML",
"nixio",
"dill",
"natsort",
"alive_progress",
"tree-config",
"pytest",
"setuptools",
],
extras_require={
"dev": ["coverage", "flake8", "sphinx<7.0.0", "sphinx-rtd-theme", "m2r2"],
},
)