-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (29 loc) · 1016 Bytes
/
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
[build-system]
requires = [ 'setuptools>=61.0', 'wheel' ]
build-backend = 'setuptools.build_meta'
[project]
name = 'tremolo'
authors = [
{ name = 'nggit', email = '[email protected]' },
]
description = """\
Tremolo is a stream-oriented, asynchronous, programmable HTTP server \
written in pure Python. It can also serve as an ASGI server.\
"""
requires-python = '>=3.6'
license = { text = 'MIT License' }
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
dynamic = [ 'version', 'readme' ]
[project.urls]
Homepage = 'https://github.com/nggit/tremolo'
Source = 'https://github.com/nggit/tremolo'
Funding = 'https://github.com/sponsors/nggit'
[tool.setuptools.dynamic]
version = { attr = 'tremolo.__version__' }
readme = { file = 'README.md', content-type = 'text/markdown' }