-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = 'onnx2torch'
version = '1.5.13'
license = {file = 'LICENSE'}
description = 'ONNX to PyTorch converter'
readme = 'README.md'
keywords = ['AI', 'onnx', 'torch', 'onnx2torch', 'converters']
authors = [{name = 'ENOT LLC', email = '[email protected]'}]
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
]
requires-python = '>=3.6'
dependencies = [
'numpy>=1.16.4',
'onnx>=1.9.0',
'torch>=1.8.0',
'torchvision>=0.9.0',
]
[project.optional-dependencies]
dev = [
'pytest',
'black',
'isort',
'pylint',
'pre-commit',
'onnxruntime',
'Pillow',
'requests',
'googledrivedownloader',
]
[project.urls]
homepage = 'https://enot.ai'
repository = 'https://github.com/ENOT-AutoDL/onnx2torch'
[tool.setuptools.packages.find]
include = ['onnx2torch*']
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
skip-string-normalization = true
[tool.isort]
profile = 'black'
line_length = 120
ensure_newline_before_comments = true
force_single_line = true