From: Chengcheng Zhang <943420582@qq.com> Date: Fri, 22 Mar 2019 07:39:11 +0000 (+0800) Subject: config setup.py X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=37421214eebe996106c0ea2fc611aee35bc1314c;p=bytom%2Fpybtm.git config setup.py --- diff --git a/README.md b/README.md index 0e13458..397c44a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # pybytom -Python3 implementation of the Bytom protocol + +Python3 implementation of the Bytom protocol. diff --git a/pybytom/__init__.py b/pybytom/__init__.py new file mode 100644 index 0000000..b67baca --- /dev/null +++ b/pybytom/__init__.py @@ -0,0 +1 @@ +name = "pybytom" \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dcdc48c --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="pybytom", + version="0.0.1", + author="zcc0721", + author_email="zcc0721@foxmail.com", + description="Python3 implementation of the Bytom protocol.", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/Bytom/pybytom", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Affero General Public License v3", + "Operating System :: OS Independent", + ], +) \ No newline at end of file