comparison setup.py @ 1:f915c612df49

fill out/fix other details for the package
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 13 Oct 2010 09:53:31 -0700
parents f1dd1069f53d
children
comparison
equal deleted inserted replaced
0:f1dd1069f53d 1:f915c612df49
33 # the provisions above, a recipient may use your version of this file under 33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL. 34 # the terms of any one of the MPL, the GPL or the LGPL.
35 # 35 #
36 # ***** END LICENSE BLOCK ***** 36 # ***** END LICENSE BLOCK *****
37 from setuptools import setup, find_packages 37 from setuptools import setup, find_packages
38 import sys, os
39 38
40 version = '0.0' 39 version = '0.0'
41 40
42 setup(name='sendchanges', 41 setup(name='sendchanges',
43 version=version, 42 version=version,
53 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 52 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
54 include_package_data=True, 53 include_package_data=True,
55 zip_safe=False, 54 zip_safe=False,
56 install_requires=[ 55 install_requires=[
57 # -*- Extra requirements: -*- 56 # -*- Extra requirements: -*-
57 'GetLatestTinderbox'
58 ], 58 ],
59 entry_points=""" 59 entry_points="""
60 # -*- Entry points: -*- 60 # -*- Entry points: -*-
61 [console_scripts]
62 sendchanges = sendchanges.sendchanges:main
61 """, 63 """,
62 ) 64 )