-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 957 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
29
30
31
32
33
#!/usr/bin/env python
"""The setup script."""
from pathlib import Path
from setuptools import find_packages, setup
setup(
author="Amit Bakhru",
author_email="[email protected]",
python_requires=">=3.5",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
description="Simple NLTK based Chatbot",
install_requires=Path("requirements.txt").read_text().splitlines(),
license="MIT license",
long_description=Path("README.md").read_text(),
include_package_data=True,
keywords="chatbot",
name="chatbot",
packages=find_packages(include=["src", "chatbot.*"]),
test_suite="tests",
url="https://github.com/abakhru/chatbot",
version="0.1.0",
zip_safe=False,
)