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
|
40
|
9 version = '0.3'
|
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
|
40
|
16 keywords='packaging',
|
1
|
17 author='Jeff Hammel',
|
40
|
18 author_email='k0scist@gmail.com',
|
|
19 url='http://k0s.org/hg/carton',
|
1
|
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 )
|