-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (42 loc) · 973 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
test_deps = [
"pytest>=6.2.3",
"pytest-flask>=1.2.0",
"pip>=21.0.1",
"flake8>=3.9.2",
"flake8-annotations>=2.6.2",
"pytest-cov>=2.12.1",
"black>=21.7b0"
]
extra_deps = [
"explainerdashboard",
"DataPrep",
"matplotlib",
"seaborn",
"dploy-kickstart",
]
extras = {
"test": test_deps,
"extra": extra_deps}
setup(
name="ML-engineer-interview-task",
version="0.0.1",
url="https://github.com/fpozoc/ML-engineer-interview-task",
author="Fernando Pozo",
author_email="[email protected]",
description="Description of my ml-skeleton package",
packages=find_packages(),
install_requires=[
"pandas",
"numpy",
"scikit-learn",
"loguru",
"xgboost",
"textblob",
"transformers",
"vaderSentiment",
"deep_translator",
],
tests_require=test_deps,
extras_require=extras,
)