-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 861 Bytes
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
[tool.poetry]
name = "twitter_openapi_python"
version = "0.0.42"
description = "Twitter OpenAPI"
authors = ["fa0311 <yuki@yuki0311.com>"]
license = "proprietary" # or "AGPL-3.0-only"
readme = "README.md"
license_file = "LICENSE"
repository = "https://github.com/fa0311/twitter_openapi_python"
keywords = ["twitter", "api", "python", "scraper"]
include = ["twitter_openapi_python/py.typed"]
[tool.poetry.dependencies]
python = "^3.7"
pydantic = ">=2.6"
urllib3 = ">= 2.1.0 < 3.0.0"
xclienttransaction = ">= 1.0.0 < 2.0.0"
twitter-openapi-python-generated = "0.0.33"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"
[tool.pyright]
reportPrivateImportUsage = false
typeCheckingMode = "standard"
[tool.ruff]
line-length = 120