forked from NeuralEnsemble/neurotune
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 771 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name = "neurotune",
version = '0.1.1dev',
packages = ['neurotune'],
author = "Michael Vella",
author_email = "mv333@cam.ac.uk",
description = "A Python library for working with NeuroML descriptions of neuronal models",
license = "BSD",
url='https://github.com/vellamike/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']
)