forked from NeuralEnsemble/pyelectro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 925 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 setuptools import setup
for line in open('pyelectro/__init__.py'):
if line.startswith("__version__"):
version = line.split("=")[1].strip()[1:-1]
setup(
name = "pyelectro",
version = version,
packages = ['pyelectro'],
author = "Michael Vella, Padraig Gleeson",
author_email = "[email protected], [email protected]",
description = "A Python library for analysis of electrophysiological data",
license = "BSD",
url='https://github.com/NeuralEnsemble/pyelectro',
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 :: 2.6',
'Topic :: Scientific/Engineering']
)