-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (49 loc) · 1.54 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
import os
from setuptools import setup, find_packages
def read(*paths):
"""
Build a file path from *paths* and return the contents.
"""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='sleepens',
version='1.0.4',
description='Sleep Classification using Ensemble Classification',
long_description=(read('README.md') + '\n\n'),
long_description_content_type="text/markdown",
url='http://github.com/paradoxysm/sleepens',
download_url = 'https://github.com/paradoxysm/sleepens/archive/1.0.4.tar.gz',
author='paradoxysm',
author_email='[email protected]',
license='BSD-3-Clause',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'threadpoolctl==2.1.0',
'numpy==1.21.6',
'scikit-learn==0.24.0',
'joblib==1.0.0',
'tqdm==4.55.0',
'xlrd==2.0.1',
'xlwt==1.3.0',
'sonpy==1.7.5',
'scipy==1.7.2',
],
python_requires='>=3.7, <3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Science/Research',
],
keywords=['python', 'ml', 'ensemble', 'sleep', 'classification'],
zip_safe=True)