-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.36 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
43
[tool.poetry]
name = "requests-sse"
version = "0.5.0"
description = "server-sent events python client library based on requests"
authors = ["overcat <4catcode@gmail.com>"]
maintainers = ["overcat <4catcode@gmail.com>"]
readme = "README.rst"
homepage = "https://github.com/overcat/requests-sse"
repository = "https://github.com/overcat/requests-sse"
documentation = "https://github.com/overcat/requests-sse"
keywords = ["server-sent events", "sse", "stream", "requests"]
license = "Apache License 2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/overcat/requests-sse/issues"
[tool.poetry.dependencies]
python = "^3.7"
requests = ">=2.0.0,<3.0.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
pytest = "^7.4.3"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"