-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·44 lines (35 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·44 lines (35 loc) · 1.25 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as req_file:
requirements = req_file.read().split("\n")
with open("requirements-dev.txt") as req_file:
requirements_dev = req_file.read().split("\n")
with open("requirements-cli.txt") as req_file:
requirements_cli = req_file.read().split("\n")
with open("VERSION") as fp:
version = fp.read().strip()
setup(
name="wabclient",
version=version,
description="WhatsApp Business API Client",
long_description=readme,
author="Simon de Haan",
author_email="simon@praekelt.org",
url="https://github.com/praekeltfoundation/python-whatsapp-business-client", # noqa
packages=["wabclient"],
package_dir={"wabclient": "wabclient"},
extras_require={"dev": requirements_dev, "cli": requirements_cli},
include_package_data=True,
install_requires=requirements,
entry_points={"console_scripts": ["wabclient = wabclient.scripts.cli:main"]},
zip_safe=False,
keywords="whatsapp",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
],
)