-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (52 loc) · 1.82 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
54
55
56
57
58
59
60
61
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ubatch"
version = "1.1.0"
description = "Micro batch solution for improve throughput in SIMD processes"
authors = ["Rodolfo E. Edelmann <[email protected]>"]
maintainers = ["Leandro E. Colombo Viña <[email protected]>"]
include = ["ubatch/py.typed"]
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
repository = "https://github.com/mercadolibre/ubatch"
homepage = "https://github.com/mercadolibre/ubatch"
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mercadolibre/ubatch/issues"
[tool.poetry.dependencies]
python = "^3.8"
flask-restx = { version = "^0.2", optional = true }
scikit-learn = { version = "^0.23", optional = true }
gunicorn = { version = "^20.0", optional = true }
xgboost = { version = "^1.2", optional = true }
keras = { version = "^2.4", optional = true }
tensorflow = { version = "^2.3", optional = true }
Sphinx = { version = "^3.3", optional = true }
recommonmark = { version = "^0.6", optional = true }
sphinx_rtd_theme = { version = "^0.5", optional = true }
sphinx-autodoc-typehints = { version = "^1.11", optional = true }
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
mypy = "*"
bandit = "^1.6"
pre-commit = "*"
pytest = "^6.1"
pytest-cov = "^2.10"
pytest-freezegun = "^0.4"
pytest-mock = "^3.3"
pytest-timeout = "^1.4"
pytest-reraise = "^1.0"
[tool.poetry.extras]
benchmark = ["flask-restx", "scikit-learn", "gunicorn", "xgboost", "keras", "tensorflow"]
docs = ["Sphinx", "recommonmark", "sphinx_rtd_theme", "sphinx-autodoc-typehints"]
[tool.black]
line-length = 88