-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.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 = "twita"
version = "0.0.2"
description = "Twitter Hidden API Library"
authors = ["DaRekaze <[email protected]>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/CounterTek/twita"
# documentation = "https://countertek.github.io/twita"
keywords = ["twitter", "twitter 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 = "twita"},
]
[tool.poetry.urls]
"Change Log" = "https://github.com/countertek/twita/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"