forked from martinbrose/cloudflarepycli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (26 loc) · 927 Bytes
/
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
[project]
name = "cloudflarepycli"
version = "2.0.1"
description = "Python CLI and utiltiies for retrieving network performance statistics."
authors = [{ name = "Tom Evslin", email = "[email protected]"}, { name = "Martin Brose", email = "[email protected]"}]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["speedtest", "cloudflare", "latency", "jitter"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = ["requests>=2.32.3"]
[project.urls]
Homepage = "https://github.com/martinbrose/cloudflarepycli"
Issues = "https://github.com/martinbrose/cloudflarepycli/issues"
[project.scripts]
cfspeedtest = "cfspeedtest.__main__:cfspeedtest"
[build-system]
requires = [
"setuptools>=61.0",
"twine>=5.1.0",
]
build-backend = "setuptools.build_meta"