forked from EdexCode/BotCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 853 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 853 Bytes
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
from setuptools import setup, find_packages
import codecs
import os
VERSION = '0.0.5-alpha'
DESCRIPTION = 'Easy chatbot development with Python. Create your own chatbots with just a few lines of code.'
# Setting up
setup(
name="botcreator",
version=VERSION,
author="EdexCode",
author_email="edexcode@gmail.com",
description=DESCRIPTION,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"cachetools>=5.3.1",
"watchdog>=4.0.1"
],
keywords=['python', 'bot', 'chatbot', 'botdeveloper', 'predefined'],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)