-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (49 loc) · 1.38 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
[tool.poetry]
name = "internet_speedtest_pi"
version = "0.1.0"
description = "Python package to measure the current internet speed and write it to a log file."
license = "MIT"
authors = ["Kilian Helfenbein <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/khelfen/internet-speedtest-pi"
repository = "https://github.com/khelfen/internet-speedtest-pi"
documentation = "https://khelfen.github.io/internet-speedtest-pi/"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
include = [
"docs",
"tests",
"*.rst",
"LICENSE",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/khelfen/internet-speedtest-pi/issues"
[tool.poetry.dependencies]
python = "^3.9"
loguru = "^0.5.3"
dynaconf = "^3.1.7"
speedtest-cli = "^2.1.3"
[tool.poetry.dev-dependencies]
black = "^21.5b0"
codecov = "^2.1.11"
coverage = "^5.5"
flake8 = "^3.9.1"
isort = "^5.8.0"
mypy = "^0.812"
pre-commit = "^2.12.1"
pylint = "^2.8.2"
pytest = "^6.2.4"
pytest-cov = "^2.11.1"
pytest-xdist = "^2.2.1"
Sphinx = "^3.5.4"
sphinx-autoapi = "^1.8.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"