-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (51 loc) · 1.63 KB
/
setup.py
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
import os
from setuptools import setup
from setuptools import find_packages
PYPI_PACKAGE_VERSION = os.environ.get("PYPI_PACKAGE_VERSION", "dev")
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
long_description = read("README.md")
setup(
name="agt",
version=PYPI_PACKAGE_VERSION,
description="Modular composable chatbot development",
long_description=long_description,
long_description_content_type="text/markdown",
author="Chen Buskilla",
author_email="chen@buskilla.com",
url="https://github.com/ConversationalComponents/agent",
license="GPLv3",
entry_points="""
[console_scripts]
agt=agt.shell:shell_app
""",
install_requires=[
"coco-sdk[async]>=0.1.11",
"aioconsole",
"pydantic",
"typer",
"pyyaml",
"python-dotenv",
],
extras_require={
"discord": ["discord.py"],
"msbf": ["botbuilder_core"],
"telegram": ["aiogram"],
"dsl": ["hy"],
"vendor": ["sanic", "python-dotenv"],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
python_requires=">=3.6",
)