-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.55 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
install_requires = [
line.strip()
for line in fh
if line.strip() and not line.startswith("#")
]
setup(
name="pywce",
version="1.0.1",
author="Donald Chinhuru",
author_email="[email protected]",
description="A template-driven engine for building WhatsApp chatbots",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DonnC/pywce",
license="MIT",
packages=find_packages(include=["pywce*"]),
python_requires=">=3.9",
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications :: Chat",
"Operating System :: OS Independent",
],
project_urls={
"Bug Tracker": "https://github.com/DonnC/pywce/issues",
"Source Code": "https://github.com/DonnC/pywce",
"Documentation": "https://docs.page/donnc/wce",
},
keywords=["whatsapp", "chatbot", "yaml", "automation", "template", "hooks"]
)