-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
39 lines (35 loc) · 1.11 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
[tool.poetry]
name = "Slurry"
version = "1.3.1"
description = "An async stream processing microframework"
authors = ["Anders Ellenshøj Andersen <[email protected]>"]
license = "MIT"
homepage = "https://github.com/andersea/slurry"
readme = "README.rst"
keywords = ["async", "iteration", "generators", "stream", "processing", "trio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: Trio",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.8"
trio = ">=0.23.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pylint = "^3.0.0"
bump2version = "^1.0.1"
pytest-trio = "^0.8.0"
sphinx = "6.2.1"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"