-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 639 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 639 Bytes
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
[tool.poetry]
name = "python-myspeed"
version = "0.1.0"
description = "A python wrapper for the MySpeed API."
authors = ["jkrgr0"]
readme = "README.md"
homepage = "https://github.com/jkrgr0/python-myspeed"
repository = "https://github.com/jkrgr0/python-myspeed"
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
coverage = "^7.6.1"
flake8 = "^7.1.1"
black = "^24.8.0"
isort = "^5.13.2"
pytest-cov = "^5.0.0"
mypy = "^1.11.2"
gitchangelog = "^3.0.4"
mkdocs = "^1.6.1"
ruff = "^0.6.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"