OSDN Git Service

config setup.py
authorChengcheng Zhang <943420582@qq.com>
Fri, 22 Mar 2019 07:39:11 +0000 (15:39 +0800)
committerChengcheng Zhang <943420582@qq.com>
Fri, 22 Mar 2019 07:39:11 +0000 (15:39 +0800)
README.md
pybytom/__init__.py [new file with mode: 0644]
setup.py [new file with mode: 0644]

index 0e13458..397c44a 100644 (file)
--- 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 (file)
index 0000000..b67baca
--- /dev/null
@@ -0,0 +1 @@
+name = "pybytom"
\ No newline at end of file
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
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