-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
61 lines (55 loc) · 1.32 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
56
57
58
59
60
61
# coding=utf-8
# SPDX-FileCopyrightText: 2015-2023 EasyCoding Team
#
# SPDX-License-Identifier: GPL-3.0-or-later
[project]
name = "wloc"
version = "1.1.0"
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
dependencies = [
"comtypes>=1.2.0; sys_platform == 'win32'",
"pygobject>=3.42.0; sys_platform == 'linux'",
"requests>=2.28.0"
]
authors = [
{ name = "Vitaly Zaitsev", email="vitaly@easycoding.org" }
]
description = "Simple Wi-Fi geolocation library and tool"
keywords = [
"api",
"application",
"geolocation",
"google-geolocation",
"library",
"mozilla-geolocation",
"tool",
"wi-fi",
"wi-fi-geolocation",
"yandex-geolocation"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
requires-python = ">=3.6"
[project.urls]
homepage = "https://github.com/xvitaly/wloc"
documentation = "https://github.com/xvitaly/wloc/blob/master/docs/README.md"
repository = "https://github.com/xvitaly/wloc"
[project.scripts]
wloc = "wloc.app.run:main"
[project.optional-dependencies]
deploy = [
"pyinstaller>=5.7.0"
]
test = [
"tox>=3.27.0"
]
[build-system]
requires = [
"setuptools>=62.0.0",
"wheel>=0.37.0"
]
build-backend = "setuptools.build_meta"