forked from signalstickers/signalstickers-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="signalstickers-client",
version="3.2.0",
author="Romain Ricard",
author_email="contact+stickerclient@romainricard.fr",
description="A client for the Signal stickers API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/romainricard/signalstickers-client",
packages=setuptools.find_packages(),
install_requires=[
'anyio>=3.0.0,<4.0.0',
'httpx>=0.16.1,<=0.24.1',
'cryptography>=3.1.1,<4.0.0',
'protobuf>=3.13.0,<4.0.0',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat"
],
python_requires='>=3.6',
package_data={
'signalstickers_client': ['utils/ca/cacert.pem']
}
)