-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
50 lines (47 loc) · 1.38 KB
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
[tool.poetry]
name = "devo-mlmodelmanager"
version = "1.6.1"
description = "A client for Devo's ML model manager"
authors = ["Devo ML Team <machine.learning@devo.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "devo_ml"}]
repository = "https://github.com/DevoInc/python-mlmodelmanager-client"
documentation = "https://devoinc.github.io/python-mlmodelmanager-client/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.2"
validators = "^0.20.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
mypy = "^1.0.1"
types-requests = "^2.28.10"
flake8 = [
{version = "5.0.4", python = ">=3.7,<3.8"},
{version = "^6.0.0", python = ">=3.8.1"}
]
coverage = "^7.2.1"
requests-mock = "^1.10.0"
tox = [
{version = "^3.26.0", python = ">=3.7,<3.8"},
{version = "^4.4.6", python = ">=3.8.1"}
]
Sphinx = [
{version = "4.3.0", python = ">=3.7,<3.8"},
{version = "^6.1.3", python = ">=3.8"}
]
sphinx-autodoc-typehints = [
{version = "1.17.1", python = ">=3.7,<3.8"},
{version = "^1.19.4", python = ">=3.8"}
]
furo = "^2022.9.29"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"