-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup_local.py
34 lines (30 loc) · 1.04 KB
/
setup_local.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
from setuptools import setup, find_packages, Extension
# from Cython.Build import cythonize
import numpy
version = '1.1'
setup(name='neurodemo',
version=version,
description='Simulations as a teaching tool for neuron electrophysiology',
url='http://github.com/lcampagnola/neurodemo',
author='Luke Campagnola',
author_email='',
license='MIT',
packages=find_packages(include=['neurodemo*']),
python_requires='>=3.10',
zip_safe=False,
entry_points={
'console_scripts': [
'ndemo=demo:main',
],
},
classifiers = [
"Programming Language :: Python :: 3.10+",
"Development Status :: Release",
"Environment :: Console",
"Intended Audience :: Graduate Students",
"License :: MIT",
"Operating System :: OS Independent",
"Topic :: Software Development :: Tools :: Python Modules",
"Topic :: Computational Modeling :: Neuroscience",
],
)