[Python-modules-commits] [python-pyld] 132/276: Update setup.py and versino to 0.1.0.

Wolfgang Borgert debacle at moszumanska.debian.org
Wed Oct 8 23:48:01 UTC 2014


This is an automated email from the git hooks/post-receive script.

debacle pushed a commit to branch master
in repository python-pyld.

commit 417255be14cac920b9ddc3843c11ea40ec3e0c9d
Author: David I. Lehn <dlehn at digitalbazaar.com>
Date:   Mon Jun 17 14:35:48 2013 -0400

    Update setup.py and versino to 0.1.0.
---
 lib/pyld/jsonld.py |  2 +-
 setup.py           | 40 +++++++++++++++++++++++++++-------------
 2 files changed, 28 insertions(+), 14 deletions(-)

diff --git a/lib/pyld/jsonld.py b/lib/pyld/jsonld.py
index 837285c..1ec060a 100644
--- a/lib/pyld/jsonld.py
+++ b/lib/pyld/jsonld.py
@@ -14,7 +14,7 @@ JSON-LD.
 
 __copyright__ = 'Copyright (c) 2011-2013 Digital Bazaar, Inc.'
 __license__ = 'New BSD license'
-__version__ = '0.0.1'
+__version__ = '0.1.0'
 
 __all__ = ['compact', 'expand', 'flatten', 'frame', 'from_rdf', 'to_rdf',
     'normalize', 'set_context_loader', 'load_context',
diff --git a/setup.py b/setup.py
index f8061ab..42e915c 100644
--- a/setup.py
+++ b/setup.py
@@ -1,25 +1,39 @@
 # -*- coding: utf-8 -*-
 """
-pyld
+PyLD
 ====
-`pyld`_ is a Python `JSON-LD` library.
 
-.. _pyld: http://github.com/digitalbazaar/pyld
+PyLD_ is a Python JSON-LD_ library.
+
+.. _PyLD: http://github.com/digitalbazaar/pyld
 .. _JSON-LD: http://json-ld.org/
 """
-from setuptools import setup
+
+from distutils.core import setup
+
+with open('README.rst') as file:
+    long_description = file.read()
 
 setup(
-    name = 'pyld',
-    version = '0.0.1',
-    license = 'BSD 3-Clause license',
-    url = 'http://github.com/digitalbazaar/pyld',
+    name = 'PyLD',
+    version = '0.1.0',
+    description = 'Python implementation of the JSON-LD API',
+    long_description=long_description,
     author = 'Digital Bazaar',
     author_email = 'support at digitalbazaar.com',
-    platforms = 'any',
-    py_modules = [
-        'pyld',
-    ],
+    url = 'http://github.com/digitalbazaar/pyld',
+    packages = ['pyld'],
+    package_dir = {'': 'lib'},
+    license = 'BSD 3-Clause license',
     classifiers = [
-    ]
+        'Development Status :: 4 - Beta',
+        'Environment :: Console',
+        'Environment :: Web Environment',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: BSD License',
+        'Operating System :: OS Independent',
+        'Programming Language :: Python',
+        'Topic :: Internet',
+        'Topic :: Software Development :: Libraries',
+    ],
 )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pyld.git



More information about the Python-modules-commits mailing list