-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.27 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "riptide-proxy"
version = "0.9.1"
description = "Tool to manage development environments for web applications using containers - HTTP and WebSocket Reverse Proxy Server"
readme = "README.rst"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Marco Köpcke", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
]
dependencies = [
"riptide-lib >= 0.9, < 0.10",
"tornado >= 6.0",
"Click >= 7.0",
"python-prctl >= 1.7; sys_platform == 'linux'",
"certauth >= 1.3"
]
[project.optional-dependencies]
profiling = ["guppy3 >= 3.0.9"]
[project.urls]
Repository = "https://github.com/theCapypara/riptide-proxy"
Documentation = "https://riptide-docs.readthedocs.io"
[project.scripts]
riptide_proxy = "riptide_proxy.__main__:main"