-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 777 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 777 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
[project]
name = "cqit"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Alexander Kyimpopkin", email = "39439486+alxkp@users.noreply.github.com" }
]
dependencies = [
"torch>=2.3.0",
"torchvision>=0.18.0",
"numpy>=1.26.4",
"matplotlib>=3.8.4",
"einops>=0.8.0",
"tqdm>=4.66.2",
]
readme = "README.md"
requires-python = ">= 3.10"
[project.scripts]
hello = "cqit:hello"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"black>=24.4.2",
"pdbp>=1.5.0",
"ruff_lsp>=0.0.53",
"pyright>=1.1.360",
"ipython>=8.24.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/cqit"]