You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ariatosca.apache.org by ra...@apache.org on 2017/06/05 13:02:56 UTC

incubator-ariatosca git commit: added long description

Repository: incubator-ariatosca
Updated Branches:
  refs/heads/packaging 356069849 -> 43fa672fc


added long description


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/43fa672f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/43fa672f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/43fa672f

Branch: refs/heads/packaging
Commit: 43fa672fcb85823b006395f7003b24145f962e8c
Parents: 3560698
Author: Ran Ziv <ra...@gigaspaces.com>
Authored: Mon Jun 5 16:02:51 2017 +0300
Committer: Ran Ziv <ra...@gigaspaces.com>
Committed: Mon Jun 5 16:02:51 2017 +0300

----------------------------------------------------------------------
 MANIFEST.in | 1 +
 setup.py    | 4 ++++
 2 files changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/43fa672f/MANIFEST.in
----------------------------------------------------------------------
diff --git a/MANIFEST.in b/MANIFEST.in
index 6c79a3a..fe7df4c 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,4 +1,5 @@
 include requirements.txt
 include VERSION
 include LICENSE
+include README.rst
 recursive-include examples *

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/43fa672f/setup.py
----------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 1be29c8..8d5f463 100644
--- a/setup.py
+++ b/setup.py
@@ -39,6 +39,9 @@ root_dir = os.path.dirname(__file__)
 with open(os.path.join(root_dir, 'VERSION')) as version_file:
     __version__ = version_file.read().strip()
 
+with open(os.path.join(root_dir, 'README.rst')) as readme:
+    long_description = readme.read()
+
 install_requires = []
 extras_require = {}
 
@@ -106,6 +109,7 @@ setup(
     name=_PACKAGE_NAME,
     version=__version__,
     description='ARIA',
+    long_description=long_description,
     license='Apache License 2.0',
     author='aria',
     author_email='dev@ariatosca.incubator.apache.org',