Mercurial > pydertron
view setup.py @ 35:6ddc83bb61f8 default tip
added another gc test
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Mon, 10 May 2010 21:01:58 -0700 |
parents | 296aba0e0a17 |
children |
line wrap: on
line source
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', ) )