-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
46 lines (41 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 = "sugaroid"
version = "0.29.0"
description = "An open source friendly artificial intelligence"
authors = ["Srevin Saju <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
spacy = "^3.1.1"
colorama = "^0.4.3"
emoji = "^1.4.1"
nltk = "^3.6.2"
chatterbot = { git = "https://github.com/sugaroidbot/ChatterBot", rev = "992dce5" }
swaglyrics = "^1.2.2"
Wikipedia-API = "^0.5.4"
"akinator.py" = "^5.0.0"
pyjokes = "^0.6.0"
mediawikiapi = "^1.1.5"
CurrencyConverter = "^0.16.3"
newsapi-python = "^0.2.6"
python-dotenv = "^0.18.0"
pyinflect = "^0.5.1"
Pint = "^0.17"
coloredlogs = "^15.0.1"
pytz = "^2021.1"
appdirs = "^1.4.4"
en-core-web-sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.1.0/en_core_web_sm-3.1.0-py3-none-any.whl"}
websockets = "^10.0"
psutil = "^5.9.0"
[tool.poetry.dev-dependencies]
Sphinx = "^4.1.1"
sphinx-rtd-theme = "^0.5.2"
mock = "^4.0.3"
black = "^21.7b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sugaroid = "sugaroid.sugaroid:main"
sugaroid-ws = "sugaroid.server.main:main"
# docs = "make -C docs html"