forked from NeuralEnsemble/neurotune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (24 loc) · 927 Bytes
/
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
# -*- coding: utf-8 -*-
from distutils.core import setup
for line in open('neurotune/__init__.py'):
if line.startswith("__version__"):
version = line.split("=")[1].strip()[1:-1]
setup(
name = "neurotune",
version = version,
packages = ['neurotune'],
author = "Michael Vella, Padraig Gleeson",
author_email = "mv333@cam.ac.uk, p.gleeson@gmail.com",
description = "A Python library for optimising neuronal models",
license = "BSD",
url='https://github.com/NeuralEnsemble/neurotune',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering']
)