forked from NeuralEnsemble/libNeuroML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 885 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
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = open("README").read()
setup(
name = "libNeuroML",
version = '0.1.0dev',
packages = ['neuroml', 'neuroml.test'],
author = "libNeuroML authors and contributors",
author_email = "<...>",
description = "A Python library for working with NeuroML descriptions of neuronal models",
long_description = long_description,
license = "BSD",
url='https://github.com/NeuralEnsemble/libNeuroML',
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',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering']
)