forked from x89/Shreddit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1.05 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
47
[tool.poetry]
name = "shreddit"
version = "7.0.0"
description = "Remove your comment history on Reddit as deleting an account does not do so."
authors = ["David John <[email protected]>", "Rachel H <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
repository = "https://github.com/rainyday/Shreddit"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"Programming Language :: Python"
]
include = ["*.example"]
[tool.poetry.dependencies]
python = "^3.7"
appdirs = "^1.4"
arrow = "^0.14.5"
backports-abc = "^0.5"
certifi = "*"
chardet = "^3.0"
idna = "^2.5"
praw = "^7.0"
python-dateutil = "^2.6"
requests = "^2.18"
tornado = "^4.5"
update-checker = "^0.16"
urllib3 = "^1.21"
pyyaml = "^5.1"
essential_generators = "^0.9.2"
[tool.poetry.scripts]
shreddit = "shreddit.app:main"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
black = "^19.10b0"
[tool.black]
line-length = 120
target-version = ["py3.7"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"