-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.93 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
62
63
64
[project]
name = "httpexec"
description = "Execute CLI commands via a REST API."
authors = [
{ name = "Michael Klatt", email = "[email protected]" },
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: User Interfaces",
]
requires-python = ">=3.9"
dependencies = [
# Relying on Semantic Versioning instead of pinned versions to minimize
# breaking changes while making it easier to recieve critical updates.
# Add a rquirements.txt file for production deployments.
"quart>=0.17.0,<0.18",
"tomli>=2.0.1,<3; python_version<'3.11'",
"Werkzeug>=2.3.8,<2.4",
]
dynamic = ["version", "readme"]
[project.urls]
"Homepage" = "https://github.com/mdklatt/httpexec"
"Repository" = "https://github.com/mdklatt/httpexec"
[project.optional-dependencies]
dev = [
"aiohttp>=3.8.4,<4",
"build>=0.10.0,<1",
"hypercorn>=0.14.3,<1",
"openapi-spec-validator>=0.5.6,<0.6.0",
"pytest>=7.3.1,<8",
"pytest-asyncio>=0.21.0,<1",
"sphinx>=6.2.1,<7",
"sphinx_rtd_theme>=1.2.1,<2",
"twine>=4.0.2,<5",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "httpexec.__version__"}
readme = {file = ["README.rst"], content-type = "text/x-rst"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"httpexec.etc" = ["*"]