-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.02 KB
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
[build-system]
requires = [ 'setuptools>=77.0.0', 'wheel' ]
build-backend = 'setuptools.build_meta'
[project]
name = 'tremolo'
authors = [
{ name = 'Anggit Arfanto', email = 'contact@anggit.com' },
]
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 = 'MIT'
license-files = [ 'LICENSE.txt' ]
classifiers = [
'Development Status :: 4 - Beta',
'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]
packages = [ 'tremolo' ]
[tool.setuptools.dynamic]
version = { attr = 'tremolo.__version__' }
readme = { file = 'README.md', content-type = 'text/markdown' }