1
|
1 from setuptools import setup
|
|
2
|
|
3 try:
|
16
|
4 import carton
|
|
5 description = carton.__doc__
|
|
6 except ImportError:
|
1
|
7 description = None
|
|
8
|
|
9 version = '0.1'
|
|
10
|
|
11 setup(name='carton',
|
|
12 version=version,
|
2
|
13 description="make self-extracting virtualenvs",
|
1
|
14 long_description=description,
|
|
15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
16 keywords='mozilla',
|
|
17 author='Jeff Hammel',
|
|
18 author_email='jhammel@mozilla.com',
|
|
19 url='https://wiki.mozilla.org/Auto-tools',
|
|
20 license='MPL',
|
|
21 py_modules=['carton'],
|
|
22 packages=[],
|
|
23 include_package_data=True,
|
|
24 zip_safe=False,
|
|
25 install_requires=[],
|
|
26 entry_points="""
|
|
27 # -*- Entry points: -*-
|
|
28 [console_scripts]
|
|
29 carton = carton:main
|
|
30 """,
|
|
31 )
|