-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 1 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
[tool.poetry]
name = "jinko-sdk"
version = "0.5.1"
description = "A Python package containing jinko_helpers, jinko_stats, and crabbit modules aimed to be used with Jinko.ai API"
authors = ["SSE Team <[email protected]>"]
readme = "README.md"
packages = [
{ include = "jinko_helpers" },
{ include = "crabbit" },
{ include = "jinko_stats" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pandas = "^2.2.2"
requests = "^2.25.1"
tqdm = "^4.66.5"
[tool.poetry.group.jinko-stats] # poetry install --with jinko-stats
optional = true
[tool.poetry.group.jinko-stats.dependencies]
freia = "^0.2"
torch = "^2.4.1"
scikit-learn = "^1.5.2"
seaborn = "^0.13.2"
matplotlib = "^3.9.2"
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = { extras = ["http"], version = "^0.26.3" }
black = { version = "^24.4.2" }
pylint = "^2.14.0"
pytest = "^8.3.3"
pytest-cov = "^3.0.0"
[tool.coverage.run]
source = ["jinko_helpers"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"