-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 1.02 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
from setuptools import setup
setup(
name="crossai-ts",
version="0.0.0.1",
packages=[
"caits",
"caits.base",
"caits.dataset",
"caits.loading",
"caits.fe",
"caits.fe.spec_properties",
"caits.transformers",
"caits.performance",
"caits.resources_handling"
],
url="https://github.com/AIoT-Group-UoP/crossai-ts-chaquopy",
license="Apache License 2.0",
author="Pantelis Tzamalis, George Kontogiannis",
author_email="[email protected]",
description="An open-source Python library for developing "
"end-to-end AI pipelines for Time Series Analysis",
install_requires=[
"pandas==2.2.0",
"scipy==1.12.0",
"scikit-learn==1.4.0",
"seaborn>=0.12.2",
"pydub==0.25.1",
"soundfile==0.12.1",
"resampy==0.4.2",
"samplerate==0.1.0; platform_system=='Linux'",
"soxr==0.3.7",
"pyyaml==6.0.1",
"tqdm==4.66.2"
],
python_requires=">=3.8"
)