-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
76 lines (71 loc) · 3 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "geochemistrypi"
version = "0.7.0"
authors = [
{ name="Can He", email="[email protected]"},
{ name="Jianhao Sun", email="[email protected]"},
{ name="Jianming Zhao", email="[email protected]"},
{ name="Yang Lyu", email="[email protected]"}
]
maintainers = [
{ name="Can He", email="[email protected]"},
{ name="Jianhao Sun", email="[email protected]"},
{ name="Jianming Zhao", email="[email protected]"},
{ name="Yongkang Shan", email="[email protected]"}
]
description = "A highly automated machine learning Python framework dedicating to build up MLOps level 1 software product for data-driven geochemistry discovery"
keywords = ["Geochemistry π", "Automated", "Machine Learning", "MLOps", "Geochemistry Discovery", "Continuous Training", "Machine Learning Lifecycle Management", "Model Inference", "Data Mining"]
readme = "README.md"
license = { file="LICENSE" }
requires-python = "~=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"typer==0.7.0",
"ray==2.2.0",
"ray[tune]",
"optuna==3.1.1",
"pydantic<2.0.0",
"scikit-learn==1.1.3",
"seaborn==0.11.0",
"multipledispatch==0.6.0",
"statsmodels==0.13.2",
"scipy==1.10.1",
"openpyxl==3.0.10",
"pandas==1.5.2",
"joblib==1.2.0",
"flaml==1.0.14", # required to run XGBoost + FLMAL
"numpy==1.23.5", # required to run XGBoost + FLMAL
"xgboost==1.6.2", # required to run XGBoost + FLAML and be compatible with M2 chip on Mac
"threadpoolctl==3.1.0", # required to draw 3d plot for KMeans
"matplotlib==3.5.2", # required to draw 3d plot for KMeans
"fastapi==0.95.2", # backend framework
"uvicorn==0.22.0", # required to run uvicorn
"python-multipart==0.0.6", # required to run uvicorn
"dash==2.10.0", # required to run dash
"sqlalchemy==2.0.13", # required to run sqlalchemy
"passlib==1.7.4", # required to run passlib
"python-jose[cryptography]", # required to run python-jose
"bcrypt==4.0.1", # required to run bcrypt
"python-dotenv==1.0.0", # required to run python-dotenv
"rich==13.3.5", # color print
"mlflow==2.4.1", # required to run mlflow
"imblearn==0.0",
]
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
"Homepage" = "https://geochemistrypi.deep-time.org"
"GitHub" = "https://github.com/ZJUEarthData/geochemistrypi"
"Bug Tracker" = "https://github.com/ZJUEarthData/geochemistrypi/issues"
"Online Documentation" = "https://geochemistrypi.readthedocs.io/en/latest/"
[project.scripts]
geochemistrypi = "geochemistrypi.cli:app"