-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (26 loc) · 976 Bytes
/
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
#!/usr/bin/env python
"""Setup Script for the Exonum Launcher."""
import setuptools
INSTALL_REQUIRES = ["pyyaml", "exonum-python-client==1.0.1"]
PYTHON_REQUIRES = ">=3.6"
with open("README.md", "r") as readme:
LONG_DESCRIPTION = readme.read()
setuptools.setup(
name="exonum-launcher",
version="0.2.0",
author="The Exonum Team",
author_email="[email protected]",
description="Exonum Dynamic Services Launcher",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/exonum/exonum-launcher",
packages=["exonum_launcher", "exonum_launcher.instances", "exonum_launcher.runtimes"],
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",
],
)