-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.67 KB
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
63
64
[tool.poetry]
name = "excore"
version = "0.1.1beta1"
description = "Build your own development toolkit efficiently."
authors = ["Asthestarsfalll <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Asthestarsfalll/excore"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Topic :: Utilities",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = "^3.8"
loguru = "^0.7.2"
requests = "2.28.1"
toml = "0.10.2"
tabulate = "*"
tqdm = "*"
rich = "*"
astor = "*"
typer = "^0.13.1"
filelock = "^3.15.4"
[tool.poetry.group.dev.dependencies]
pre-commit = "3.5"
black = "24.8"
ruff = "^0.9.10"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
torch = { version = "1.13.1", source = "torch" }
torchvision = { version = "0.14.1", source = "torch" }
mypy = "^1.14.1"
types-toml = "^0.10.8.20240310"
types-tqdm = "^4.67.0.20241119"
types-tabulate = "^0.9.0.20240106"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu117"
priority = "supplemental"
[tool.poetry.scripts]
excore = 'excore.cli.launch:app'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100