forked from Codingplace42/django-simple-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 836 Bytes
/
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
import os
from setuptools import setup, find_packages
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-simple-chatbot",
version="0.0.9",
author="Janga",
license='MIT License',
author_email="[email protected]",
description="A very basic Django Chatbot ft. NLTK and DRF",
url="https://github.com/Codingplace42/django-simple-chatbot",
packages=find_packages(),
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'django>=2.2',
'nltk',
'djangorestframework'
]
)