Mercurial > hg > urlmatch
annotate setup.py @ 4:23be092e6099
make this executable
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 Jun 2011 10:40:51 -0700 |
parents | 00266c7a7c3c |
children |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
4 version = '0.0' | |
5 | |
6 setup(name='urlmatch', | |
7 version=version, | |
8 description="match urls systematically", | |
3
00266c7a7c3c
since there is only one module, dont bother with the whole directory thing
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
9 long_description='', |
0 | 10 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
11 keywords='url', | |
12 author='Jeff Hammel', | |
13 author_email='jhammel@mozilla.com', | |
14 url='http://k0s.org/mozilla/hg/urlmatch', | |
15 license='MPL', | |
3
00266c7a7c3c
since there is only one module, dont bother with the whole directory thing
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
16 py_modules=['urlmatch'], |
00266c7a7c3c
since there is only one module, dont bother with the whole directory thing
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
17 packages=[], |
0 | 18 include_package_data=True, |
19 zip_safe=False, | |
20 install_requires=[ | |
21 # -*- Extra requirements: -*- | |
22 ], | |
23 entry_points=""" | |
24 # -*- Entry points: -*- | |
25 """, | |
26 ) |