-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
37 lines (35 loc) · 985 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
34
35
36
37
#!/usr/bin/env python
import setuptools
from distutils.core import setup
setup(
name="binancechain",
version="0.1.6",
description="Unofficial Binance Chain SDK",
author="Luke Macken & Kim Bui",
author_email="",
url="https://github.com/lmacken/binance-chain-python",
packages=["binancechain"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
install_requires=[
"wheel",
"bech32",
"aiohttp",
"bitcoinlib",
"eth_keyfile",
"secp256k1",
"pyee",
"varint",
"protobuf",
"orjson",
],
)