-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.51 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
[project]
name = "whereami"
description = "Pings various known datacenter locations to triangulate itself"
requires-python = ">=3.9"
readme = "README.md"
keywords = ["python3", "ping", "icmp", "socket", "tool", "http", "locator"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = []
dynamic = ["version"]
[project.optional-dependencies]
dev = ["tcppinglib", "poetry", "build", "wheel", "pycodestyle", "ping3"]
[project.urls]
Homepage = "https://github.com/danktec/whereami"
"Issue Tracker" = "https://github.com/danktec/whereami/issues"
"Source Code" = "https://github.com/danktec/whereami"
[project.scripts]
whereami = "whereami.command_line:main"
[tool.setuptools]
py-modules = ["whereami"]
[tool.setuptools.dynamic]
version = {attr = "whereami.__version__"}
[tool.setuptools.packages.find]
exclude = ["contrib", "docs", "tests"]
[tool.poetry]
name = "whereami"
authors = ["dank <[email protected]>"]
readme = "README.md"
description = "Pings various known datacenter locations to triangulate itself"
version = "1.0.0"
[tool.poetry.dependencies]
python = "^3.9"
ping3 = "^4.0.4"
tcppinglib = "^2.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"