-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (46 loc) · 1.37 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
[build-system]
requires = ["setuptools>=67.5"]
build-backend = "setuptools.build_meta"
[project]
name = "arch-mirror-map"
dynamic = ["entry-points"]
version = "0.1"
description = "Python project to show current mirrors on a map, trying to geolocate via IP"
authors = [
{name = "Arun Bahl", email = "[email protected]"},
{name = "Anton Hvornum", email = "[email protected]"},
]
license = {text = "AGPL-1.0-or-later"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"geoip2",
"folium",
"maxminddb-geolite2",
"pycountry_convert",
"pgeocode",
"geopy"
]
keywords = ["arch", "linux", "mirrors", "map"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
[project.urls]
Home = "https://archlinux.org/mirrors/"
Documentation = "https://arch-mirror-map.readthedocs.io/"
Source = "https://github.com/Torxed/arch-mirror-map.git"
[project.scripts]
arch-mirror-map = "arch_mirror_map:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["arch_mirror_map"]
[options.packages.find]
where="arch_mirror_map/"
[options.package_data]
# Which file types to include when building
arch_mirror_map = ["**/*.py", "**/*.toml"]
[tool.setuptools.package-data]
# Which file types to include when building
# (second time because package-data is in beta still)
arch_mirror_map = ["**/*.py", "**/*.toml"]