-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1015 Bytes
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
[build-system]
requires = [ 'setuptools>=61.0', 'wheel' ]
build-backend = 'setuptools.build_meta'
[project]
name = 'netizen'
authors = [
{ name = 'Anggit Arfanto', email = 'contact@anggit.com' },
]
description = """\
Netizen is a minimalist HTTP client with a symmetrical interface \
between async and sync modes.\
"""
requires-python = '>=3.7'
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',
'Topic :: Software Development :: Libraries',
'Framework :: AsyncIO',
]
dynamic = [ 'version', 'readme' ]
[project.urls]
Homepage = 'https://github.com/nggit/netizen'
Source = 'https://github.com/nggit/netizen'
Funding = 'https://github.com/sponsors/nggit'
[tool.setuptools.dynamic]
version = { attr = 'netizen.__version__' }
readme = { file = 'README.md', content-type = 'text/markdown' }