forked from gunthercox/ChatterBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (79 loc) · 2.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages=[
"chatterbot",
"chatterbot.storage",
"chatterbot.logic",
"chatterbot.ext",
"chatterbot.ext.sqlalchemy_app",
"chatterbot.ext.django_chatterbot",
"chatterbot.ext.django_chatterbot.migrations",
]
[tool.setuptools.dynamic]
version = {attr = "chatterbot.__version__"}
[project]
name = "ChatterBot"
requires-python = "~=3.9"
urls = { Documentation = "https://docs.chatterbot.us", Repository = "https://github.com/gunthercox/ChatterBot"}
description = "ChatterBot is a machine learning, conversational dialog engine"
authors = [
{name = "Gunther Cox"},
]
license = { file = "LICENSE", name = "BSD-3-Clause" }
readme = "README.md"
dynamic = ["version"]
keywords = [
"ChatterBot",
"chatbot",
"chat",
"bot",
"natural language processing",
"nlp",
"artificial intelligence",
"ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Environment :: Console",
"Environment :: Web Environment",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Communications :: Chat",
"Topic :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"mathparse>=0.1,<0.2",
"python-dateutil>=2.9,<2.10",
"sqlalchemy>=2.0,<2.1",
"spacy>=3.8,<3.9",
"tqdm",
]
[project.optional-dependencies]
test = [
"flake8",
"coverage",
"nose",
"sphinx>=5.3,<8.2"
]
dev = [
"pint>=0.8.1",
"pymongo>=4.11,<4.12",
"pyyaml>=6.0,<7.0",
"chatterbot-corpus>=1.2.2"
]