comparison setup.py @ 1:dd6985163631

add a setup.py
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 08 Jul 2011 07:32:41 -0700
parents
children dba783d48eae
comparison
equal deleted inserted replaced
0:1c7da6388dd9 1:dd6985163631
1 import os
2 from setuptools import setup
3
4 try:
5 here = os.path.dirname(os.path.abspath(__file__))
6 description = file(os.path.join(here, 'README.txt')).read()
7 except IOError:
8 description = None
9
10 version = '0.1'
11
12 setup(name='carton',
13 version=version,
14 description="make self-extracting virtualevns"
15 long_description=description,
16 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
17 keywords='mozilla',
18 author='Jeff Hammel',
19 author_email='jhammel@mozilla.com',
20 url='https://wiki.mozilla.org/Auto-tools',
21 license='MPL',
22 py_modules=['carton'],
23 packages=[],
24 include_package_data=True,
25 zip_safe=False,
26 install_requires=[],
27 entry_points="""
28 # -*- Entry points: -*-
29 [console_scripts]
30 carton = carton:main
31 """,
32 )