We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a131cf commit da918aeCopy full SHA for da918ae
setup.py
@@ -1,10 +1,23 @@
1
+import os
2
from setuptools import setup, find_packages
3
4
+BASE_DIR = os.path.dirname(__file__)
5
+README_PATH = os.path.join(BASE_DIR, "README.md")
6
+LONG_DESCRIPTION_TYPE = "text/markdown"
7
+
8
+if os.path.isfile(README_PATH):
9
+ with io.open(README_PATH, encoding="utf-8") as f:
10
+ LONG_DESCRIPTION = f.read()
11
+else:
12
+ LONG_DESCRIPTION = ""
13
14
15
setup(
16
name="github-deploy",
17
version="0.0.1",
18
description="Deploy yaml files to a large number of repositories in seconds.",
19
+ long_description=LONG_DESCRIPTION,
20
+ long_description_content_type=LONG_DESCRIPTION_TYPE,
21
url="https://github.com/tj-python/github-deploy",
22
entry_points={
23
"console_scripts": [
0 commit comments