forked from KordingLab/spykes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·63 lines (61 loc) · 1.84 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
#! /usr/bin/env python
from setuptools import find_packages
from setuptools import setup
DISTNAME = 'spykes'
DESCRIPTION = """Basic tools for neural data analysis and visualization."""
MAINTAINER = 'Pavan Ramkumar and Hugo Fernandes'
MAINTAINER_EMAIL = 'pavan.ramkumar@gmail.com'
LICENSE = 'MIT'
URL = 'https://github.com/KordingLab/spykes.git'
VERSION = '0.3.dev'
if __name__ == "__main__":
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
version=VERSION,
url=URL,
long_description=open('README.md').read(),
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
install_requires=[
'numpy',
'scipy',
'matplotlib',
'pandas',
'requests',
],
extras_require={
'deepdish': ['deepdish'],
'develop': [
'nose',
'coverage',
'flake8',
'sphinx',
'sphinx-gallery',
'sphinx_rtd_theme',
'm2r',
'deepdish',
'image',
'tensorflow>=1.4.0',
'h5py',
],
'ml': [
'tensorflow>=1.4.0',
],
},
platforms='any',
packages=find_packages(exclude=['tests', 'tests.*']),
)