-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 1.33 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
[build-system]
requires = [ "setuptools",]
build-backend = "setuptools.build_meta"
[project]
name = "torchruntime"
version = "1.17.0"
description = "Meant for app developers. A convenient way to install and configure the appropriate version of PyTorch on the user's computer, based on the OS and GPU manufacturer and model number."
readme = "README.md"
requires-python = ">=3.0"
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: Microsoft :: Windows :: Windows 11", "Operating System :: POSIX :: Linux", "Operating System :: MacOS",]
keywords = [ "torch", "ai", "ml", "llm", "installer", "runtime",]
dynamic = [ "dependencies",]
[[project.authors]]
name = "cmdr2"
email = "secondary.cmdr2@gmail.com"
[project.scripts]
torchruntime = "torchruntime.__main__:main"
[project.urls]
Homepage = "https://github.com/easydiffusion/torchruntime"
"Bug Tracker" = "https://github.com/easydiffusion/torchruntime/issues"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
include = "\\.pyi?$"
exclude = "/(\n \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-vs"
testpaths = [ "tests", "integration",]