-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (55 loc) · 1.62 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }
[tool.setuptools]
packages = ["serveM"]
include-package-data = true
[project]
name = "serveM"
description = "A simple screen sharing server for modern GNU/LINUX desktops!"
requires-python = ">=3.8"
readme = "README.md"
dynamic = ["version", "dependencies"]
authors = [{ name = "@bRuttaZz", email = "agrajpdasprivate@gmail.com" }]
license = { file = "LICENSE" }
keywords = [
"stmp",
"sitty-talky",
"sittytalky",
"LAN",
"WLAN",
"peer-discovery",
"Messaging",
"protocol",
"multicast dns",
"dns",
"udp",
"tcp",
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop ',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Adaptive Technologies',
'Topic :: Internet',
'Topic :: Communications :: File Sharing',
'Topic :: Desktop Environment :: Window Managers',
'Natural Language :: English',
]
[project.scripts]
servem = "serveM.main:main"
[project.urls]
Repository = "https://github.com/bRuttaZz/serveM.git"