-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
69 lines (63 loc) · 1.6 KB
/
setup.cfg
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
69
# This file is used to configure your project.
# Read more about the various options under:
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# https://setuptools.pypa.io/en/latest/references/keywords.html
[metadata]
name = kedro_onnx
version = attr: kedro_onnx.__version__
description = Adds ONNX support to Kedro
author = nickolasrm
author_email = [email protected]
license = Apache-2.0
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
url = https://pypi.org/project/kedro-onnx/
# Add here related links, for example:
project_urls =
Documentation = https://kedro-onnx.readthedocs.io/en/latest/
Source = https://github.com/nickolasrm/kedro-onnx
Pypi = https://pypi.org/project/kedro-onnx/
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
include_package_data = True
packages = find:
python_requires = >=3.9
zip_safe = False
install_requires =
kedro>=0.18.2
onnxmltools
onnxconverter-common
onnxruntime
[options.extras_require]
test =
pytest
pytest-cov
pytest-mock
pytest-tmpfs
sklearn
skl2onnx
numpy
docs =
sphinx
sphinx-copybutton
sphinx-autodoc-typehints
furo
sphinxcontrib-napoleon
myst-parser
sphinx-autoapi
dev =
%(test)s
%(docs)s
yapf
pre-commit
[options.packages.find]
exclude =
tests*
docs*