-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 1.09 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
41
42
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]
[project]
authors = [
{name = "Austin Raney", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Utilities",
]
dependencies = ["typing_extensions"]
description = "Treat multiple async iterators as a single async iterator."
dynamic = ["version"]
keywords = ["async", "iterator"]
license = {text = "MIT License"}
name = "windmolen"
readme = "README.md"
requires-python = ">=3.7"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-asyncio",
]
dev = ["black"]
[tool.setuptools]
packages = ["windmolen"]
[tool.setuptools.dynamic]
version = {attr = "windmolen.__version__"}