Skip to content

Commit

Permalink
Extract package version from jsonld.__version__.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlehn committed Sep 25, 2013
1 parent e367ba4 commit 0526ee8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -10,13 +10,18 @@
"""

from distutils.core import setup
import os
import sys

sys.path.append(os.path.join(os.path.dirname(__file__), 'lib'))
from pyld import jsonld

with open('README.rst') as file:
long_description = file.read()

setup(
name = 'PyLD',
version = '0.1.1-dev',
version = jsonld.__version__,
description = 'Python implementation of the JSON-LD API',
long_description=long_description,
author = 'Digital Bazaar',
Expand Down

0 comments on commit 0526ee8

Please sign in to comment.