[Python-modules-commits] [python-pyld] 24/276: Add basic setup.py.

Wolfgang Borgert debacle at moszumanska.debian.org
Wed Oct 8 23:47:50 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 5d4323a92b99aa7422bddadf32ccefac2ad8480a
Author: David I. Lehn <dlehn at digitalbazaar.com>
Date:   Mon Sep 5 20:21:05 2011 -0400

    Add basic setup.py.
---
 setup.py | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..f7bdf28
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+"""
+pyld
+====
+`pyld`_ is a Python `JSON-LD` library.
+
+.. _pyld: http://github.com/digitalbazaar/pyld
+.. _JSON-LD: http://json-ld.org/
+"""
+from setuptools import setup
+
+setup(
+    name = 'pyld',
+    version = '0.0.1',
+    license = 'BSD 3-Clause license',
+    url = 'http://github.com/digitalbazaar/pyld',
+    author = 'Digital Bazaar',
+    author_email = 'support at digitalbazaar.com',
+    playforms = 'any',
+    py_modules = [
+        'pyld',
+    ],
+    classifiers = [
+    ]
+)

-- 
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