forked from BirchKwok/spinesTS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 949 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 949 Bytes
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
from setuptools import Extension, dist, find_packages, setup
setup(
name='spinesTS',
version="0.0.1",
description='spinesTS, a powerful timeseries toolsets.',
keywords='computer vision',
packages=find_packages(),
long_description='./README.md',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
url='https://github.com/BirchKwok/spinesTS',
author='Birch Kwok',
author_email='birchkwok@gmail.com',
install_requires=[
'scikit-learn>=1.0.2',
'torch>=1.4',
'scipy>=1.7.0',
'numpy>=1.17.0',
'pandas>=1.0.0',
'tabulate>=0.8'
],
zip_safe=False,
include_package_data=True
)