forked from Tierion/pymerkletools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·31 lines (28 loc) · 916 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
import os
from setuptools import setup, find_packages
setup_requirements = [
'setuptools_scm',
]
setup(
name='merkletools',
use_scm_version=True,
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/randomchain/pymerkletools',
author='Eder Santana',
keywords='merkle tree, blockchain, tierion',
license="MIT",
packages=find_packages(exclude=["tests"]),
include_package_data=False,
zip_safe=False,
setup_requires=setup_requirements,
)