-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1023 Bytes
/
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
37
38
39
40
[project]
name = "torch_adapter"
version = "0.1.0"
description = "This library offers an implementation of PyTorch’s preprocessing and inference steps using the OpenVINO API, effectively serving as an adapter for PyTorch."
authors = [
{name = "LucaTamSapienza", email = "[email protected]"},
]
dependencies = [
"torch==2.3.0",
"numpy",
"torchvision==0.18.0",
"openvino",
]
requires-python = ">=3.9"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Python", "PyTorch", "openvino"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
]
[project.urls]
Repository = "https://github.com/LucaTamSapienza/torch_adapter"
Issues = "https://github.com/LucaTamSapienza/torch_adapter/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
packages = ["src/torch_adapter"]
[tool.pdm.dev-dependencies]
test = [
"pytest",
"ipython",
]