forked from deepgully/pyzil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.1 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
# -*- coding: utf-8 -*-
# Zilliqa Python API
# Copyright (C) 2019 Gully Chen
# MIT License
"""
setup file
"""
from pyzil import version
from setuptools import setup, find_packages
packages = find_packages()
package_data = {"pyzil": ["tests/*", "tests/crypto/*"]}
tests_require = ["pytest"]
install_requires = [
"requests", "jsonrpcclient", "jsonrpcclient[requests]",
"protobuf", "fastecdsa", "pyethash",
"pycryptodome", "eth-hash[pycryptodome]",
]
setup(
name="pyzil",
version=version,
description="Zilliqa Python API",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
keywords="zilliqa api",
author="Gully Chen",
author_email="[email protected]",
url="http://github.com/deepgully/pyzil",
license="MIT License",
packages=packages,
include_package_data=True,
package_data=package_data,
install_requires=install_requires,
tests_require=tests_require,
)