-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (39 loc) · 1.47 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
from setuptools import setup, find_packages
from setuptools.extension import Extension
from Cython.Build import cythonize
import numpy
extensions = [
Extension(
"spayk.CIntegrators",
"spayk.Core"
["spayk/CIntegrators.pyx", "spayk/Core.pyx"],
# include_dirs=['/some/path/to/include/'], # not needed for fftw unless it is installed in an unusual place
# libraries=['fftw3', 'fftw3f', 'fftw3l', 'fftw3_threads', 'fftw3f_threads', 'fftw3l_threads'],
# library_dirs=['/some/path/to/include/'], # not needed for fftw unless it is installed in an unusual place
),
]
setup(
name='Spayk',
version='0.1.1',
description='SPAYK: An environment for spiking neural network simulation',
url='https://github.com/aggelen/Spayk',
author='Aykut Görkem Gelen',
author_email='[email protected]',
license='BSD 3-clause',
packages=['spayk'],
install_requires=['matplotlib==3.5.0',
'numpy==1.25.1',
'seaborn==0.11.2',
'tqdm==4.62.3',
'torchvision==0.16.0',
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
include_dirs=[numpy.get_include()],
ext_modules = cythonize(extensions)
)