forked from bandprotocol/pylibra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.05 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
import io
import os
from setuptools import setup
README = io.open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf-8").read()
REQUIREMENTS = [
line.strip()
for line in io.open(os.path.join(os.path.dirname(__file__), "requirements.txt"), encoding="utf-8").readlines()
]
setup(
name="pylibra",
version="0.1.10",
license="MIT",
author="Band Protocol",
author_email="[email protected]",
description="A Python client for Libra network",
long_description=README,
long_description_content_type='text/markdown',
url="https://github.com/bandprotocol/pylibra",
packages=["pylibra", "pylibra.wallet", "pylibra.proto", "pylibra.transaction"],
keywords=["libra", "client", "cryptocurrency", "blockchain"],
install_requires=REQUIREMENTS,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
],
)