-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (59 loc) · 1.72 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
65
66
67
68
[project]
name = "canirun"
version = "1.0.1"
description = "Check if you can run a Hugging Face model locally."
readme = "README.md"
authors = [{ name = "Varun Agnihotri", email = "hello@pythonicvarun.me" }]
requires-python = ">=3.10"
keywords = ["huggingface", "hardware", "quantization", "llm", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Hardware",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"huggingface-hub~=1.3.1",
"psutil~=7.2.1",
"tabulate~=0.9.0",
"click~=8.3.1",
]
[project.urls]
Homepage = "https://github.com/PythonicVarun/canirun"
Repository = "https://github.com/PythonicVarun/canirun.git"
Issues = "https://github.com/PythonicVarun/canirun/issues"
[project.scripts]
canirun = "canirun.cli:main"
[build-system]
requires = ["setuptools~=80.9.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[project.optional-dependencies]
dev = [
"black>=26.1.0",
"isort>=7.0.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.14.14",
]