1
|
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,
|
2
|
14 description="make self-extracting virtualenvs",
|
1
|
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 )
|