-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.3 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="mininode",
version="0.3.4",
author="liujuanjuan1984, zhangwm404",
author_email="qiaoanlu@163.com",
description="a mini python sdk for quorum lightnode with http/https requests to quorum fullnode",
keywords=["rumsystem", "quorum", "lightnode", "sdk"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/liujuanjuan1984/quorum-mininode-python",
project_urls={
"Github Repo": "https://github.com/liujuanjuan1984/quorum-mininode-python",
"Bug Tracker": "https://github.com/liujuanjuan1984/quorum-mininode-python/issues",
"About Quorum": "https://github.com/rumsystem/quorum",
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=["example"]),
python_requires=">=3.5",
install_requires=[
"requests",
"filetype",
"pillow",
"pygifsicle",
"eth_keys",
"protobuf",
"eth_account",
],
)