-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.12 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
[build-system]
requires = [ 'setuptools>=61.0', 'wheel', 'Cython' ]
build-backend = 'setuptools.build_meta'
[project]
name = 'httpout'
authors = [
{ name = 'nggit', email = 'contact@anggit.com' },
]
description = """\
httpout is a runtime environment for Python files. \
It allows you to execute your Python scripts from a web URL, \
the print() output goes to your browser.\
"""
requires-python = '>=3.7'
dependencies = [
'awaiter',
'tremolo>=0.1.2',
]
license = { text = 'MIT License' }
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'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/httpout'
Source = 'https://github.com/nggit/httpout'
Funding = 'https://github.com/sponsors/nggit'
[tool.setuptools.dynamic]
version = { attr = 'httpout.__version__' }
readme = { file = 'README.md', content-type = 'text/markdown' }