-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (37 loc) · 1.15 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'numpy',
'pandas',
'scikit-learn',
'torch',
'wandb',
'pyedflib',
'scipy',
'matplotlib',
'requests',
'pyinstrument'
]
setup(name='portiloop-training',
packages=[package for package in find_packages()],
version='0.0.2',
license='MIT',
description='Sleep spindle detector',
long_description=long_description,
long_description_content_type="text/markdown",
author='Nicolas Valenchon, Yann Bouteiller',
url='https://github.com/Portiloop/portiloop-training',
download_url='',
keywords=['spindle'],
install_requires=install_requires,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)