Skip to content

Commit 22efd29

Browse files
committed
Add README as long description
1 parent 04a6a53 commit 22efd29

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

pydgraph/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = '1.0.0a1'
15+
VERSION = '1.0.0a2'

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,23 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
import os
16+
from pypandoc import convert
17+
1518
try:
1619
from setuptools import setup
1720
except ImportError:
1821
from distutils.core import setup
1922

2023
from pydgraph.meta import VERSION
2124

25+
README = os.path.join(os.path.dirname(__file__), 'README.md')
26+
2227
setup(
2328
name='pydgraph',
2429
version=VERSION,
2530
description='Official Dgraph client implementation for Python',
31+
long_description=convert(README, 'rst'),
2632
license='Apache License, Version 2.0',
2733
author='Dgraph Labs',
2834
author_email='[email protected]',

0 commit comments

Comments
 (0)