OSDN Git Service

b2cdfbf0a1b8f6ac8237e2c239bf091347b32c0b
[bytom/pybtm.git] / setup.py
1 import setuptools
2
3 with open("README.md", "r") as fh:
4     long_description = fh.read()
5
6 setuptools.setup(
7     name="pybtm",
8     version="0.0.17",
9     author="zcc0721",
10     author_email="zcc0721@foxmail.com",
11     description="Python3 implementation of the Bytom protocol.",
12     long_description=long_description,
13     long_description_content_type="text/markdown",
14     url="https://github.com/Bytom/pybtm",
15     packages=setuptools.find_packages(),
16     install_requires=[
17         "ed25519>=1.4",
18         "pbkdf2>=1.3",
19         "pybase64>=0.5.0",
20         "qrcode>=6.1",
21         "sha3>=0.2.1",
22         "six>=1.12.0"
23     ],
24     classifiers=[
25         "Programming Language :: Python :: 3",
26         "License :: OSI Approved :: MIT License",
27         "Operating System :: OS Independent",
28     ],
29 )