forked from hyperledger-labs/umbra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("umbra/__init__.py") as f:
for line in f:
if line.startswith("__version__"):
version = line.split('"')[1]
setup(
name='umbra',
version=version,
description='Umbra - Emulating Hyperledger Blockchains',
long_description=readme,
long_description_content_type="text/markdown",
author='Raphael Vicente Rosa',
packages=find_packages(exclude=("tests",)),
namespace_packages=["umbra"],
include_package_data=True,
keywords=('umbra', 'emulator', 'hyperledger', 'blockchain'),
license='Apache License v2.0',
url='https://github.com/raphaelvrosa/umbra',
download_url='https://github.com/raphaelvrosa/umbra',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
scripts=["umbra/broker/umbra-broker",
"umbra/scenario/umbra-scenario"],
install_requires = [
'asyncio>=3.4.3',
'protobuf>=3.11.0',
'grpclib>=0.3.1',
'grpcio-tools>=1.26.0',
'PyYAML>=5.1.2',
'networkx>=2.4',
'psutil>=5.6.7',
],
python_requires=">=3.7",
setup_requires=["setuptools>=41.1.0"],
)