-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 982 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 982 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="defy",
version="0.0.0",
author="Parin Kobboon",
author_email="punparin@gmail.com",
description="A command line tool to lookup balance on blockchain network",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/punparin/defy-cli",
packages=setuptools.find_packages(),
install_requires=[
"click==7.1.2",
"configparser==5.0.2",
"requests==2.25.1",
"tabulate==0.8.9",
"web3==5.17.0",
"python-binance==0.7.9",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"defy=defy.cli:cli",
],
},
python_requires=">=3.6",
)