forked from aio-libs/aiojobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 1.13 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
39
40
[build-system]
requires = ["flit >= 1.1"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "aiojobs"
author = "Andrew Svetlov"
author-email = "andrew.svetlov@gmail.com"
home-page = "https://github.com/aio-libs/aiojobs"
requires=[
"async-timeout >= 4.0.0"
]
requires-python=">=3.6"
description-file="README.rst"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
]
[tool.flit.metadata.requires-extra]
aiohttp = [
"aiohttp >= 3.8.0"
]
[tool.towncrier]
package = "aiojobs"
filename = "CHANGES.rst"
directory = "CHANGES/"
title_format = "{version} ({project_date})"
issue_format = "`#{issue} <https://github.com/aio-libs/aiojobs/issues/{issue}>`_"