forked from Starofall/RTX
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
21 lines (20 loc) · 788 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
# Setup configuration for the tool
setup(
name='RTX',
version='0.2',
long_description="Real-Time Experimentation (RTX) tool allows for self-adaptation based on analysis of real time (streaming) data. RTX is particularly useful in analyzing operational data in a Big Data environement.",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=[
'colorama', # color on the console
'kafka-python', # integration with kafka
'scikit-optimize', # gauss optimizer
'flask', # json support
'pandas', # plotting lib
'seaborn', # plotting lib
'paho-mqtt', # mqtt integration
'requests==2.27.1' # http integreation
]
)