-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 994 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 994 Bytes
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
#run 'python3 -m build' to build the project
#then run 'twine upload dist/*' to publish
[build-system]
requires = ["setuptools>=61.0", "toml"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["wisp", "wisp.server"]
package-dir = {"" = "src"}
[project]
name = "wisp-python"
version = "0.9.0"
authors = [
{name="ading2210"},
]
description = "An implementation of a Wisp proxy server in Python"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"websockets",
"asyncudp",
"python-socks[asyncio]",
"uvloop; sys_platform != 'win32' and sys_platform != 'cygwin'",
"winloop; sys_platform == 'win32' or sys_platform == 'cygwin'"
]
[project.urls]
Homepage = "https://github.com/MercuryWorkshop/wisp-server-python"
Issues = "https://github.com/MercuryWorkshop/wisp-server-python/issues"