comparison 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
comparison
equal deleted inserted replaced
28:d28100e071a7 29:296aba0e0a17
1 from setuptools import setup
2
3 setup(
4 name = "pydertron",
5 version = "0.0.1",
6 author = "Atul Varma",
7 author_email = "atul@mozilla.com",
8 description = ("An experimental high-level wrapper for Pydermonkey "
9 "that provides convenient, secure object wrapping "
10 "between JS and Python space."),
11 license = "MPL 1.1/GPL 2.0/LGPL 2.1",
12 url = "http://hg.toolness.com/pydertron",
13 packages = ("pydertron",),
14 classifiers = (
15 'Development Status :: 3 - Alpha',
16 'Intended Audience :: Developers',
17 'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
18 'Programming Language :: Python',
19 'Programming Language :: JavaScript',
20 'Topic :: Software Development :: Interpreters',
21 )
22 )