File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- VERSION = '1.0.0a1 '
15
+ VERSION = '1.0.0a2 '
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
+ import os
16
+ from pypandoc import convert
17
+
15
18
try :
16
19
from setuptools import setup
17
20
except ImportError :
18
21
from distutils .core import setup
19
22
20
23
from pydgraph .meta import VERSION
21
24
25
+ README = os .path .join (os .path .dirname (__file__ ), 'README.md' )
26
+
22
27
setup (
23
28
name = 'pydgraph' ,
24
29
version = VERSION ,
25
30
description = 'Official Dgraph client implementation for Python' ,
31
+ long_description = convert (README , 'rst' ),
26
32
license = 'Apache License, Version 2.0' ,
27
33
author = 'Dgraph Labs' ,
28
34
You can’t perform that action at this time.
0 commit comments