-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "konnect"
authors = [{name = "metallkopf"}]
description = "Headless KDE Connect"
requires-python = ">=3.10"
keywords = ["headless", "kdeconnect", "kde-connect", "server"]
license = {text = "GPL-2.0-only"}
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
urls = {Source = "https://github.com/metallkopf/konnect"}
dependencies = [
"cryptography",
"pillow",
"pyopenssl",
"requests",
"service-identity",
"twisted"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment :: K Desktop Environment (KDE)",
"Topic :: Internet",
"Topic :: Utilities",
]
[project.optional-dependencies]
devel = ["build", "flake8", "isort", "pytest", "twine"]
systemd = ["systemd-python"]
[project.scripts]
konnect = "konnect.client:main"
konnectd = "konnect.server:main"
[tool.setuptools]
packages = ["konnect"]
[tool.setuptools.dynamic]
version = {attr = "konnect.__version__"}
[tool.pytest.ini_options]
testpaths = ["tests"]