-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
82 lines (74 loc) · 2.27 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
75
76
77
78
79
80
81
82
#!/usr/bin/env python
from setuptools import setup, Extension
from glob import glob
import os
import platform
# Specify specific compiler on Mac
# if platform.system() == 'Darwin':
# os.environ["CC"] = "gcc-mp-5"
setup_requires = []
scripts = []
# scripts.extend(glob('scripts/*py'))
# --- Encapsulate NumPy imports in a specialized Extension type ---------------
# https://mail.python.org/pipermail/distutils-sig/2007-September/008253.html
CLASSIFIERS = """\
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Topic :: Scientific/Engineering
"""
setup(
name="cascade",
version="0.0.1",
packages=['cascade',
],
# scripts = [''],
#
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'numpy>=1.8',
'matplotlib>=1.5.3',
'scipy>=0.19.0',
'seaborn',
# 'networkx>=2.1',
# 'python-louvain', # Imported as community
'pandas>=0.21.1'
'scikit-image>=0.9.3',
# 'shapely>=1.2.14',
'scikit-learn>=0.11',
'pillow>=2.6.1',
'future',
# 'future>=0.14',
],
scripts=scripts,
# package_data={
# 'replay': [
# 'tests/*.py',
# 'tests/data/example.tif',
# 'tests/data/example.h5',
# 'tests/data/example-volume.h5',
# 'tests/data/example-tiffs/*.tif',
# ]
# },
#
# metadata for upload to PyPI
author="Kelly McGuire",
author_email="[email protected]",
description="Andermann Lab cortical reactivation analysis",
license="GNU GPLv2",
keywords="imaging microscopy neuroscience behavior",
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
setup_requires=setup_requires,
# setup_requires=['setuptools_cython'],
url="https://www.andermannlab.com/",
platforms=["Linux", "Mac OS-X", "Windows"],
# ext_modules=[anb, aaode, runclassifier],
#
# could also include long_description, download_url, etc.
)