-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
executable file
·33 lines (30 loc) · 998 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
31
32
33
import os
from setuptools import find_packages
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
install_requires = [
"pysha3>=1.0b1; python_version<\"3.6\""
]
setup(
name='merkletools',
version='1.0.4',
description='Merkle Tools',
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
url='https://github.com/Tierion/pymerkletools',
author='Eder Santana',
keywords='merkle tree, blockchain, tierion',
license="MIT",
packages=find_packages(exclude=["tests"]),
include_package_data=False,
zip_safe=False,
install_requires=install_requires
)