-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (30 loc) · 921 Bytes
/
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
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "aiosubprocess"
author = "Samuel Giffard"
author-email = "[email protected]"
home-page = "https://github.com/Mulugruntz/aiosubprocess"
classifiers = [
"Framework :: AsyncIO",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
]
description-file = "README.md"
requires-python = ">=3.6"
[tool.flit.metadata.requires-extra]
dev = [
"pytest",
"coverage",
"pytest-asyncio"
]