-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
53 lines (47 loc) · 1.14 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
[tool.poetry]
name = "cozify"
version = "0.2.36"
description = "Unofficial Python3 API bindings for the (unpublished) Cozify API."
authors = ["Artanicus <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/Artanicus/python-cozify"
repository = "https://github.com/Artanicus/python-cozify"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.27.1"
absl-py = "^1.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
mypy = "^1.6.1"
flake8 = "^6.1.0"
isort = "^5.12.0"
flake8-bugbear = "^23.9.16"
pytest = "^6.2.5"
codecov = "^2.1.12"
pytest-profiling = "^1.7.0"
python-gist = "^0.10.6"
mbtest = "^2.10.0"
pytest-dotenv = "^0.5.2"
pytest-recording = "^0.12.0"
pytest-cov = "^3.0.0"
Sphinx = "^5.0.2"
sphinx-rtd-theme = "^1.0.0"
sphinx-autoapi = "^1.8.4"
vcrpy = "^5.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = docs
[testenv:docs]
changedir = docs
deps =
sphinx
recommonmark
sphinx_rtd_theme
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
"""