[Python-checkins] r59018 - sandbox/trunk/pep362/setup.py

brett.cannon python-checkins at python.org
Fri Nov 16 08:08:36 CET 2007


Author: brett.cannon
Date: Fri Nov 16 08:08:36 2007
New Revision: 59018

Added:
   sandbox/trunk/pep362/setup.py   (contents, props changed)
Log:
An initial setup.py file.


Added: sandbox/trunk/pep362/setup.py
==============================================================================
--- (empty file)
+++ sandbox/trunk/pep362/setup.py	Fri Nov 16 08:08:36 2007
@@ -0,0 +1,14 @@
+from distutils.core import setup
+
+setup(
+        # Package metadata.
+        name='pep362',
+        version='0.4',
+        description='Implementation of PEP 362 (Function Signature objects)',
+        author='Brett Cannon',
+        author_email='brett at python.org',
+        url='http://svn.python.org/view/sandbox/trunk/pep362/',
+        # Files.
+        py_modules=['pep362'],
+        data_files=['README'],
+    )


More information about the Python-checkins mailing list