forked from cloned-doy/whatsfly
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (28 loc) · 1.06 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="whatsfly",
version="0.2.01",
license="MIT",
author="Doy Bachtiar, Otamay, David Arnold, LabFox, Ivo Bellin Salarin",
url="https://whatsfly.labfox.fr",
keywords="whatsfly whatsapp python",
description="WhatsApp on the fly.",
package_dir={"whatsfly": "whatsfly"},
packages=["whatsfly"],
install_requires = ["types-PyYAML", "setuptools", "requests", "qrcode", "protobuf"],
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Topic :: Communications",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)