-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
82 lines (76 loc) · 2.2 KB
/
setup.py
File metadata and controls
82 lines (76 loc) · 2.2 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
from setuptools import setup, find_packages
import os
# Read the contents of README.md file
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="ezflowx",
version="0.1.0",
description="A lightweight, extensible machine learning framework for hackathons",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alex Hayrapetyan",
author_email="hayrapetyan.alexan@gmail.com",
url="https://github.com/Alcray/ezflowx",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.7",
install_requires=[
# Core data processing
"numpy>=1.21.0",
"pandas>=1.3.0",
# Machine Learning models
"scikit-learn>=1.0.0",
"xgboost>=1.5.0",
# Visualization
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
# Hyperparameter tuning
"optuna>=2.10.0",
# Utilities
"joblib>=1.1.0",
"pyyaml>=5.4.0",
"tqdm>=4.62.0",
"python-dotenv>=0.19.0",
],
extras_require={
"dev": [
"pytest>=6.0.0",
"black>=21.5b0",
"flake8>=3.9.0",
"isort>=5.8.0",
"mypy>=0.812",
],
"docs": [
"sphinx>=4.0.0",
"sphinx-rtd-theme>=0.5.0",
],
"tracking": [
"mlflow>=1.25.0",
],
"api": [
"flask>=2.0.0"
],
"dashboard": [
"streamlit>=1.10.0"
],
"all": [
"optuna>=2.10.0",
"hyperopt>=0.2.7",
"mlflow>=1.25.0",
"flask>=2.0.0",
"streamlit>=1.10.0",
],
},
)