-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (48 loc) · 1.29 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# setup.py
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
about = {}
with open('./sleepscore/__about__.py') as f:
exec(f.read(), about)
install_requires = [
'numpy>=1.17.2',
'visbrain>=0.4.5',
'pyyaml',
'docopt',
'pandas',
'tqdm',
'pathlib',
'scipy',
]
extras_require = {
'tdt': ['tdt>=0.3.3']
}
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
license=about['__license__'],
install_requires=install_requires,
extras_require=extras_require,
packages=['sleepscore'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
)