-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 837 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src/"]
[project]
name = "ghost_benchmark"
version = "0.0.1"
description = "A python benchmark package"
authors = [
{name = "Rustam Zhumagambetov", email = "developer@rustamzh.com"}
]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
dependencies = [
"lightning==2.*",
"torch==1.*",
"torch-dct",
"pandas",
"scikit-learn",
"tqdm",
"joblib"
]
[project.optional-dependencies]
dev = [
"mkdocstrings",
"mkdocstrings-python",
"mkdocs_gen_files",
"mkdocs-mermaid2-plugin",
"mkdocs-jupyter"
]