-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 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
[tool.poetry]
name = "gatered"
version = "1.3.1"
description = "Reddit Gateway API Library"
authors = ["DaRekaze <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/CounterTek/gatered"
documentation = "https://countertek.github.io/gatered"
keywords = ["reddit", "reddit api"]
classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
packages = [
{ include = "gatered"},
]
[tool.poetry.urls]
"Change Log" = "https://github.com/countertek/gatered/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
httpx = {extras = ["http2", "socks"], version = ">=0.21.0"}
aiometer = ">=0.3.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
black = {version = "^21.12b0", allow-prereleases = true}
pdoc = "^10.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"