-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.29 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="crypto_treehole",
version="0.2.6",
author="liujuanjuan1984",
author_email="[email protected]",
description="a treehole bot server for mixin messenger and rum system (both crypto products)",
keywords=["rumsystem", "quorum", "treehole", "mixin"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/liujuanjuan1984/crypto_treehole",
project_urls={
"Github Repo": "https://github.com/liujuanjuan1984/crypto_treehole",
"Bug Tracker": "https://github.com/liujuanjuan1984/crypto_treehole/issues",
"About Quorum": "https://github.com/rumsystem/quorum",
"About Mixin": "https://github.com/MixinNetwork/mixin",
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=["example"]),
python_requires=">=3.8",
install_requires=[
"requests",
"mixinsdk==0.2.1",
"quorum-mininode-py>=1.2.1",
"quorum-data-py>=1.1.5",
],
)