annotate setup.py @ 0:3812c1493dde default tip

add the slasher...be afraid, be very afraid
author k0s <k0scist@gmail.com>
date Mon, 11 Jan 2010 17:50:36 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
1 from setuptools import setup, find_packages
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
2 import sys, os
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
3
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
4 version = "0.0"
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
5
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
6 setup(name='theslasher',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
7 version=version,
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
8 description="removes trailing slashes",
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
9 long_description="""
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
10 """,
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
12 author='Jeff Hammel',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
13 author_email='k0scist@gmail.com',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
14 url='http://k0s.org',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
15 license="",
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
17 include_package_data=True,
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
18 zip_safe=False,
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
19 install_requires=[
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
20 # -*- Extra requirements: -*-
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
21 'WebOb',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
22 'Paste',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
23 'PasteScript',
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
24 ],
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
25 entry_points="""
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
26 # -*- Entry points: -*-
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
27 [paste.app_factory]
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
28 main = theslasher.factory:factory
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
29 """,
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
30 )
3812c1493dde add the slasher...be afraid, be very afraid
k0s <k0scist@gmail.com>
parents:
diff changeset
31