forked from OpenElectrophy/OpenElectrophy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (63 loc) · 2.13 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
from setuptools import setup
import os
from setuptools import setup, find_packages
from OpenElectrophy.version import __version__ as version
long_description = open("README.txt").read()
if os.name == 'nt':
scripts = ['startOpenElectrophy.py',]
entry_points = {
'gui_scripts' : [ 'startOpenElectrophy = startOpenElectrophy'],
}
else:
scripts = ['startOpenElectrophy.py']
entry_points = None
install_requires=[
'numpy>=1.3.0',
'quantities>=0.9.0',
'neo>=0.3',
'scipy>=0.9.0',
'matplotlib>=1.1.0',
'sqlalchemy>=0.7',
'sqlalchemy-migrate>=0.7',
'pyqtgraph>=0.9.3',
'guidata>=1.4.1',
'joblib>=0.6.4',
'tables>=2.3.1',
'pywavelets>=0.2.2',
'scikit-learn>=0.11',
'blosc',
]
#~ numexpr
# these are optional because hard to instal on win32:
#~ 'MySQLdb (>=1.2.3)',
#~ 'psycopg2',
#~ 'blosc',
#~ 'snappy',
#~ 'lz4',
setup(
name = "OpenElectrophy",
version = version,
packages = find_packages(),
scripts = scripts,
entry_points = entry_points,
include_package_data=True,
install_requires = install_requires,
requires = [ ],
author = "OpenElectrophy authors and contributors",
author_email = "[email protected]",
maintainer = "Samuel Garcia",
maintainer_email = "[email protected]",
long_description = long_description,
url = 'http://packages.python.org/OpenElectrophy/',
license = "BSD",
description = "OpenElectrophy : an electrophysiological data- and analysis-sharing framework",
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',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
)