-
Notifications
You must be signed in to change notification settings - Fork 156
/
setup.py
85 lines (68 loc) · 2.48 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
83
84
85
# -*- coding: utf-8 -*-
# flake8: noqa
"""Installation script."""
#------------------------------------------------------------------------------
# Imports
#------------------------------------------------------------------------------
import os
import os.path as op
import re
from setuptools import setup
#------------------------------------------------------------------------------
# Setup
#------------------------------------------------------------------------------
def _package_tree(pkgroot):
path = op.dirname(__file__)
subdirs = [op.relpath(i[0], path).replace(op.sep, '.')
for i in os.walk(op.join(path, pkgroot))
if '__init__.py' in i[2]]
return subdirs
curdir = op.dirname(op.realpath(__file__))
with open(op.join(curdir, 'README.md')) as f:
readme = f.read()
# Find version number from `__init__.py` without executing it.
filename = op.join(curdir, 'phy/__init__.py')
with open(filename, 'r') as f:
version = re.search(r"__version__ = '([^']+)'", f.read()).group(1)
filename = op.join(curdir, 'requirements.txt')
with open(filename, 'r') as f:
require = [x.strip() for x in f.readlines() if not x.startswith('git+')]
# Only add PyQt5 dependency if it is not already installed in the conda environment.
try:
import PyQt5
except ImportError:
require.append('PyQt5')
setup(
name='phy',
version=version,
license="BSD",
description='Interactive visualization and manual spike sorting of large-scale ephys data',
long_description=readme,
long_description_content_type="text/markdown",
author='Cyrille Rossant (cortex-lab/UCL/IBL)',
author_email='cyrille.rossant+pypi@gmail.com',
url='https://phy.cortexlab.net',
packages=_package_tree('phy'),
package_dir={'phy': 'phy'},
package_data={
'phy': ['*.vert', '*.frag', '*.glsl', '*.npy', '*.gz', '*.txt', '*.json',
'*.html', '*.css', '*.js', '*.prb', '*.ttf', '*.png'],
},
entry_points={
'console_scripts': [
'phy = phy.apps:phycli'
],
},
install_requires=require,
include_package_data=True,
keywords='phy,data analysis,electrophysiology,neuroscience',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Framework :: IPython",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
)