-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
95 lines (88 loc) · 2.3 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
88
89
90
91
92
93
94
95
[tool.poetry]
name = "pyborg"
version = "2.1.0a2"
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 = ["J 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.8"
toml = "^0.10.0"
arrow = "^0.17"
PyTumblr = "^0.1.0"
requests = "*"
bottle = "^0.12.17"
venusian = "^3"
click = "^8.0"
humanize = "^3.0"
praw = "^6.3"
"Mastodon.py" = "<1.5"
tweepy = "^3.7"
attrs = "^23"
statsd = "^3.3"
prompt_toolkit = "^3"
"discord.py" = "^1.2.3"
"aeidon" = {version= "^1.7.0", optional = true}
irc = "^19"
aiohttp = "*"
nltk = {version = "^3.4.5", optional = true}
tabulate = "^0.8.5"
filelock = "^3.0"
importlib_resources = {version = "*", python = "< 3.9"}
networkx = {version = "^2.4", optional = true}
matplotlib = {version = "^3.1.2", optional = true}
typing_extensions = "^4"
defusedxml = "^0.7.0"
systemd = {version = "^0.16.1", optional = true}
pysocks = "^1.7.1"
pydot = {version = "^1.4.1", optional = true}
pygraphviz = {version = "^1.7", optional = true}
[tool.poetry.dev-dependencies]
green = "*"
coverage = "*"
sphinx-click = "*"
sphinx-autobuild = "*"
mypy = "*"
flake8 = "^3.7"
invoke = "^2.2"
fabric2 = "^3"
asynctest = "^0.13.0"
ipython = "^8"
docutils = "*"
pylint = "^3"
bandit = "*"
sphinxcontrib_github_alt = "^1.2"
webtest = "*"
tox = "^3"
[tool.poetry.dev-dependencies.black]
version = "*"
allow-prereleases = true
[tool.poetry.extras]
nlp = ["nltk"]
subtitles = ["aeidon"]
systemd = ["systemd"]
graphing = ["matplotlib", "networkx", "pydot", "pygraphviz"]
[tool.isort]
known_third_party = ["aeidon"]
line_length = 140
[tool.black]
line-length = 140
[tool.pyright]
ignore = ["*/misc/*", "**/test/*"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"