forked from arquimago/LoLWikiBot
-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
63 lines (55 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "gdgajubot"
version = "1.8.0"
description = "GDG Aracaju Bot"
authors = ["GDG Aracaju"]
repository = "https://github.com/GDGAracaju/GDGAjuBot"
license = "GPL-2.0-only"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: Portuguese (Brazilian)",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Communications :: Chat",
]
[tool.poetry.scripts]
gdgajubot = "gdgajubot.__main__:main"
[tool.poetry.dependencies]
python = "3.6.15"
beaker = ">=1.11.0,<2.0.0"
beautifulsoup4 = ">=4.6.0,<4.7.0"
dj-database-url = ">=0.5.0,<0.6.0"
pony = ">=0.7.3,<0.8.0"
psycopg2-binary = ">=2.9.2,<3.0.0"
python-telegram-bot = ">=10.0.1,<10.1.0"
pyyaml = ">=6.0,<7.0"
requests = ">=2.26.0,<2.27.0"
html5lib = ">=1.1,<1.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
pytest-httpserver = "^1.0.3"
pytest-postgresql = "^3.0.0"
callee = "^0.3.1"
psycopg = {extras = ["binary"], version = "^3.0.5"}
pre-commit = "^2.16.0"
telethon = "^1.24.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
atomic = true
skip_gitignore = true
force_single_line = true
lines_after_imports = 2
lines_between_types = 1
src_paths = ["gdgajubot", "tests"]
known_first_party = "gdgajubot"
[tool.black]
line-length = 88