forked from neurodsp-tools/neurodsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 2.21 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
"""NeuroDSP setup script."""
import os
from setuptools import setup, find_packages
# Get the current version number from inside the module
with open(os.path.join('neurodsp', 'version.py')) as version_file:
exec(version_file.read())
# Load the long description from the README
with open('README.rst') as readme_file:
long_description = readme_file.read()
# Load the required dependencies from the requirements file
with open("requirements.txt") as requirements_file:
install_requires = requirements_file.read().splitlines()
setup(
name = 'neurodsp',
version = __version__,
description = 'Digital signal processing for neural time series.',
long_description = long_description,
python_requires = '>=3.5',
author = 'The Voytek Lab',
author_email = '[email protected]',
maintainer = 'Thomas Donoghue',
maintainer_email = '[email protected]',
url = 'https://github.com/neurodsp-tools/neurodsp',
packages = find_packages(),
license = 'Apache License, 2.0',
download_url = 'https://github.com/neurodsp-tools/neurodsp/releases',
keywords = ['neuroscience', 'neural oscillations', 'time series analysis', 'local field potentials',
'spectral analysis', 'time frequency analysis', 'electrophysiology'],
install_requires = install_requires,
tests_require = ['pytest'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
platforms = 'any',
project_urls = {
'Documentation' : 'https://neurodsp-tools.github.io/',
'Bug Reports' : 'https://github.com/neurodsp-tools/neurodsp/issues',
'Source' : 'https://github.com/neurodsp-tools/neurodsp'
},
)