-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "otf-api"
version = "0.8.2"
description = "Python OrangeTheory Fitness API Client"
authors = ["Jessica Smith <[email protected]>"]
license = "MIT"
readme = "README.md"
documentation = "https://otf-api.readthedocs.io/en/stable/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "3.10.*"
humanize = "^4.9.0"
inflection = "0.5.*"
pint = "0.24.*"
pycognito = "2024.5.1"
pydantic = "2.7.3"
[tool.poetry.group.dev.dependencies]
aioresponses = "0.7.6"
black = "^24.4.2"
build = "1.2.1"
bump-my-version = "^0.23.0"
httpx = "^0.27.0"
mypy = "1.10.0"
pre-commit = "3.7.1"
pytest = "8.2.2"
pytest-asyncio = "0.23.7"
pytest-cov = "5.0.0"
pytest-loguru = "0.4.0"
tox = "4.15.1"
twine = "5.1.1"
[tool.poetry.group.docs.dependencies]
griffe-fieldz = "0.1.2"
mike = "2.1.1"
mkdocs = "1.6.0"
mkdocs-autorefs = "1.0.1"
mkdocs-gen-files = "0.5.0"
mkdocs-get-deps = "0.2.0"
mkdocs-include-markdown-plugin = "6.2.0"
mkdocs-literate-nav = "0.6.1"
mkdocs-material = "9.5.26"
mkdocs-material-extensions = "1.3.1"
mkdocs-section-index = "0.3.9"
mkdocstrings = "0.25.1"
mkdocstrings-python = "1.10.3"
pkginfo = "<1.11"
setuptools = "^70.0.0"
virtualenv = "^20.26.2"
griffe = "<1.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]