-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (32 loc) · 1.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
33
34
35
36
#!/usr/bin/env python
"""Setup Script for the Exonum Python Light Client."""
import setuptools
INSTALL_REQUIRES = ["protobuf", "pysodium", "requests", "websocket-client-py3"]
PYTHON_REQUIRES = ">=3.4"
with open("README.md", "r") as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name="exonum-python-client",
version="1.0.1",
author="The Exonum Team",
author_email="[email protected]",
description="Exonum Python Light Client",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/exonum/exonum-python-client",
packages=[
"exonum_client",
"exonum_client.proofs",
"exonum_client.proofs.map_proof",
"exonum_client.proofs.list_proof",
"exonum_client.protobuf_provider",
],
install_requires=INSTALL_REQUIRES,
python_requires=PYTHON_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
],
)