-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
52 lines (45 loc) · 1.79 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
from setuptools import setup, find_packages
import os
# Read in the README to serve as the long_description, which will be presented
# on pypi.org as the project description.
with open('README.rst', 'r') as f:
long_description = f.read()
with open('ephyviewer/version.py') as f:
d = {}
exec(f.read(), None, d)
version = d['version']
with open('requirements.txt', 'r') as f:
install_requires = f.read()
extras_require = {}
with open('requirements-docs.txt', 'r') as f:
extras_require['docs'] = f.read()
with open('requirements-tests.txt', 'r') as f:
extras_require['tests'] = f.read()
entry_points={'console_scripts': ['ephyviewer=ephyviewer.scripts:launch_standalone_ephyviewer']}
setup(
name = 'ephyviewer',
version = version,
packages = find_packages(),
install_requires = install_requires,
extras_require = extras_require,
author = 'S.Garcia, Jeffrey Gill',
author_email = '', # left blank because multiple emails cannot be provided
description = 'Simple viewers for ephys signals, events, video and more',
entry_points = entry_points,
long_description = long_description,
license = 'MIT',
url ='https://github.com/NeuralEnsemble/ephyviewer',
project_urls = {
'Documentation': 'https://ephyviewer.readthedocs.io/en/latest/',
'Source code': 'https://github.com/NeuralEnsemble/ephyviewer/',
'Bug tracker': 'https://github.com/NeuralEnsemble/ephyviewer/issues',
'Change log': 'https://ephyviewer.readthedocs.io/en/latest/releasenotes.html',
},
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
)