-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.48 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jaqpotpy"
dynamic = ["version"]
description = "Client library for managing machine learning models on the Jaqpot platform"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"attrs==23.2.0",
"httpx==0.27.0",
"kennard-stone==2.2.1",
"mendeleev==0.16.2",
"mordredcommunity==2.0.5",
"onnx==1.17.0",
"onnxmltools==1.12.0",
"onnxruntime==1.19.2",
"pandas==2.2.2",
"polling2==0.5.0",
"pre-commit==4.0.1",
"pydantic==2.7.1",
"pydotplus==2.0.2",
"pyjwt==2.8.0",
"pymatgen==2024.5.1",
"python-dotenv==1.0.1",
"python-keycloak==4.3.0",
"rdkit==2023.9.6",
"requests==2.32.2",
"ruff==0.6.3",
"scikit-learn==1.5.0",
"simplejson==3.19.2",
"skl2onnx==1.17.0",
"torch-geometric==2.5.0",
"torch==2.3.0",
"tqdm==4.66.4",
"xgboost==2.1.1",
"jaqpot-api-client==6.40.7",
"jaqpot-python-sdk==6.0.2"
]
[[project.authors]]
name = "Unit of Process Control and Informatics | National Technical University of Athens"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/ntua-unit-of-control-and-informatics/jaqpotpy"
[tool.hatch.version]
path = "jaqpotpy/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/jaqpotpy",
]