-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.21 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.21 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md', 'r') as f:
README = f.read()
setup(
name = 'snnap2neuron',
version = '0.1.0',
description = 'An automated translation tool for converting SNNAP models into NEURON models',
packages = ['snnap2neuron'],
install_requires = [],
entry_points = {'console_scripts': ['snnap2neuron=snnap2neuron.scripts:main']},
long_description = README,
keywords = ['neuroscience', 'modeling', 'model', 'SNNAP', 'NEURON'],
# author = 'Jeffrey Gill',
# author_email = 'jeffrey.p.gill@gmail.com',
license = 'GPLv3',
url = 'https://github.com/CWRUChielLab/SNNAP2NEURON',
project_urls = {
'Source code': 'https://github.com/CWRUChielLab/SNNAP2NEURON',
'Bug tracker': 'https://github.com/CWRUChielLab/SNNAP2NEURON/issues',
},
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
)