-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.56 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "stmp.__version__"}
dependencies = {file = "requirements.txt"}
[tool.setuptools]
packages = ["stmp"]
include-package-data = true
[project]
name = "stmp-server"
description = "A primitive zero-configuration local network protocol purely written in python, originally intended for tinkering with your office mates over LAN!"
requires-python = ">=3.11"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version", "dependencies"]
authors = [
{ name="@bRuttaZz", email="agrajpdasprivate@gmail.com" },
]
keywords = ["stmp", "sitty-talky", "sittytalky",
"LAN", "WLAN", "peer-discovery", "Messaging", "protocol", "multicast dns", "dns", "udp", "tcp"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Topic :: Software Development',
'Natural Language :: English',
]
[project.urls]
Homepage = "https://github.com/bRuttaZz/stmp"
Issues = "https://github.com/bRuttaZz/stmp/issues"
Repository = "https://github.com/bRuttaZz/stmp.git"
Documentation = "https://pypi.org/project/stmp-server/"