forked from humanprotocol/hmt-escrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 830 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
import setuptools
setuptools.setup(
name="hmt-escrow",
version="0.8.5",
author="HUMAN Protocol",
description="A python library to launch escrow contracts to the HUMAN network.",
url="https://github.com/hCaptcha/hmt-escrow",
include_package_data=True,
zip_safe=True,
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
packages=setuptools.find_packages() + ["contracts", "migrations"],
install_requires=[
"http://github.com/iamdefinitelyahuman/py-solc-x/tarball/master#egg=py-solc-x",
"http://github.com/ethereum/trinity/tarball/master#egg=trinty",
"hmt-basemodels",
"boto3",
"http://github.com/sphinx-doc/sphinx/tarball/master#egg=sphinx",
],
)