forked from jrabbit/pyborg-1up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (82 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "pyborg"
version = "2.0.0-alpha.8"
description = "Markov chain (chat) bot for a suite for modern services (discord, irc, twitter, mastodon, file, linein)"
license = "GPL-3.0+"
readme = "pyborg/README.md"
repository = "https://github.com/jrabbit/pyborg-1up"
documentation = "https://pyborg.readthedocs.io/en/latest/"
authors = ["Jack Laxson <[email protected]>"]
include = ["example.*.toml"]
packages = [
{ include = "pyborg", from = "pyborg" },
{ include = "pyborg_entrypoint.py", from = "pyborg" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Topic :: Games/Entertainment",
]
[tool.poetry.scripts]
pyborg = 'pyborg_entrypoint:cli_base'
[tool.poetry.dependencies]
python = "^3.6.1"
toml = "^0.10.0"
arrow = "^0.15"
PyTumblr = "^0.1.0"
requests = "*"
bottle = "^0.12.17"
venusian = "^3"
click = "^7.0"
humanize = "^2.0"
praw = "^6.3"
"Mastodon.py" = "^1.4"
tweepy = "^3.7"
attrs = "^19.1"
statsd = "^3.3"
prompt_toolkit = "^3"
"discord.py" = "^1.2.3"
"aeidon" = {version= "^1.7.0", optional = true}
irc = "^18"
aiohttp = "*"
tox = "^3.13.2"
nltk = {version = "^3.4.5", optional = true}
tabulate = "^0.8.5"
filelock = "^3.0"
importlib_metadata = {version = "^1.3.0", python = "< 3.8"}
networkx = {version = "^2.4", optional = true}
matplotlib = {version = "^3.1.2", optional = true}
typing_extensions = "^3.7.4"
defusedxml = "^0.6.0"
systemd = {version = "^0.16.1", optional = true}
pysocks = "^1.7.1"
[tool.poetry.dev-dependencies]
green = "*"
coverage = "*"
sphinx-click = "*"
click = "^7.0"
sphinx-autobuild = "*"
mypy = {version = "*", python = ">= 3.7"}
flake8 = "^3.7"
invoke = "^1.2"
fabric2 = "^2.4"
asynctest = "^0.13.0"
ipython = "*"
docutils = "*"
pylint = "^2.3.1"
bandit = "^1.6.2"
black = "^19.10b0"
sphinxcontrib_github_alt = "^1.2"
[tool.poetry.extras]
nlp = ["nltk"]
subtitles = ["aeidon"]
systemd = ["systemd"]
graphing = ["matplotlib", "networkx"]
[tool.isort]
known_third_party = ["aeidon"]
line_length = 140
[tool.black]
line-length = 140
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"