-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 890 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 890 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
from setuptools import find_packages, setup
setup(
name="pv056_2019",
version="1.0",
description="Testing",
url="https://github.com/H00N24/PV056-AutoML-testing-framework",
author="Robert Kolcun, Ondrej Kurak",
author_email="487564@mail.muni.cz, okurak@mail.muni.cz",
license="MIT",
packages=find_packages(include=["pv056_2019", "pv056_2019.*"]),
include_package_data=True,
install_requires=["pandas", "numpy", "liac-arff", "sklearn", "pydantic"],
entry_points={
"console_scripts": [
"pv056-split-data=pv056_2019.data_splitter:main",
"pv056-apply-od-methods=pv056_2019.apply_od_methods:main",
"pv056-remove-outliers=pv056_2019.remove_outliers:main",
"pv056-run-clf=pv056_2019.main_clf:main",
"pv056-statistics=pv056_2019.statistics:main",
]
},
zip_safe=False,
)