-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.01 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.01 KB
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
from setuptools import setup, find_packages
setup(
name="kfpca",
version="1.0.0",
description="Attention Kalman Filter with PCA for highly variable workload prediction",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Michael Dang'ana",
author_email="michael.dangana@mail.utoronto.ca",
url="https://github.com/mikdangana/kfpca",
packages=find_packages(),
install_requires=[
"kafka-python-ng>=1.0.0",
"jproperties>=2.0.0",
"scipy>=1.8.0",
"tensorflow>=2.8.0",
"tensorflow-cpu>=2.8.0",
"numpy>=1.21.0",
"matplotlib>=3.5.0",
"pandas>=1.3.0",
"plotly>=5.5.0",
"PyYAML>=5.4.0", # Added YAML support
"scikit-learn>=0.24.0",
"filterpy>=1.4.5"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)