-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.17 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
44
45
46
[tool.poetry]
name = "tweet-delete"
version = "0.3.1"
description = "Self-destructing Tweet tool"
authors = ["Brenden Matthews <[email protected]>"]
license = "MIT"
documentation = "https://github.com/brndnmtthws/tweet-delete/blob/master/README.md"
homepage = "https://github.com/brndnmtthws/tweet-delete"
readme = "README.md"
repository = "https://github.com/brndnmtthws/tweet-delete.git"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
click = ">=7.1.2,<9.0.0"
python-twitter = "^3.5"
gevent = ">=20.6.2,<25.0.0"
python-dateutil = "^2.8.1"
pytimeparse = "^1.1.8"
colorama = "^0.4.3"
Pygments = "^2.6.1"
[tool.poetry.dev-dependencies]
pytest-cov = "^5.0.0"
pytest = "^8.3.2"
pytest-mock = "^3.14.0"
pytest-vcr = "^1.0.2"
black = "^24.8.0"
pylint = "^3.2.7"
pytest-gevent = "^1.1.0"
[tool.poetry.urls]
"GitHub" = "https://github.com/brndnmtthws/tweet-delete"
"Bug Tracker" = "https://github.com/brndnmtthws/tweet-delete/issues"
[tool.poetry.scripts]
tweet-delete = 'tweet_delete.entry:cli'
vscode = "vscode:vscode"
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"