OSDN Git Service

change license
[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="pybytom",
8     version="0.0.1",
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/pybytom",
15     packages=setuptools.find_packages(),
16     classifiers=[
17         "Programming Language :: Python :: 3",
18         "License :: OSI Approved :: MIT License",
19         "Operating System :: OS Independent",
20     ],
21 )