-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 893 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 893 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
[build-system]
requires = [ 'setuptools>=61.0', 'wheel' ]
build-backend = 'setuptools.build_meta'
[project]
name = 'awaiter'
authors = [
{ name = 'nggit', email = 'contact@anggit.com' },
]
description = 'Makes your blocking functions awaitable.'
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 :: Software Development :: Libraries',
'Framework :: AsyncIO',
]
dynamic = [ 'version', 'readme' ]
[project.urls]
Homepage = 'https://github.com/nggit/awaiter'
Source = 'https://github.com/nggit/awaiter'
Funding = 'https://github.com/sponsors/nggit'
[tool.setuptools.dynamic]
version = { attr = 'awaiter.__version__' }
readme = { file = 'README.md', content-type = 'text/markdown' }