forked from alihanemretunc/CherryScript
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1015 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cherryscript"
version = "1.0.0"
description = "A programming language for automated data collection, processing, and AI program creation"
authors = [{ name = "Cherry Computer Ltd." }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
# Core runtime dependencies (always installed)
dependencies = [
"pandas>=1.3.0",
"numpy>=1.21.0",
]
[project.optional-dependencies]
db = ["pymysql>=1.0.0"]
ml = ["h2o>=3.36.0", "scikit-learn>=1.0.0"]
deploy = ["fastapi>=0.68.0", "uvicorn>=0.15.0", "pydantic>=1.9.0"]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=6.0.0",
]
all = [
"pymysql>=1.0.0",
"h2o>=3.36.0",
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"pydantic>=1.9.0",
]
[project.scripts]
cherryscript = "cherryscript.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["cherryscript*"]