diff setup.py @ 29:296aba0e0a17

made pydertron into a package, created setup.py.
author Atul Varma <avarma@mozilla.com>
date Mon, 10 May 2010 01:18:22 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/setup.py	Mon May 10 01:18:22 2010 -0700
@@ -0,0 +1,22 @@
+from setuptools import setup
+
+setup(
+    name = "pydertron",
+    version = "0.0.1",
+    author = "Atul Varma",
+    author_email = "atul@mozilla.com",
+    description = ("An experimental high-level wrapper for Pydermonkey "
+                   "that provides convenient, secure object wrapping "
+                   "between JS and Python space."),
+    license = "MPL 1.1/GPL 2.0/LGPL 2.1",
+    url = "http://hg.toolness.com/pydertron",
+    packages = ("pydertron",),
+    classifiers = (
+        'Development Status :: 3 - Alpha',
+        'Intended Audience :: Developers',
+        'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
+        'Programming Language :: Python',
+        'Programming Language :: JavaScript',
+        'Topic :: Software Development :: Interpreters',
+        )
+    )