1 from setuptools
import setup
5 os
.environ
['COPYFILE_DISABLE'] = 'true' # this disables including resource forks in tar files on os x
9 if sys
.version_info
>= (3,0):
10 extra
['use_2to3'] = True
14 version
=re
.search(r
'__version__ = ["\']([^
"\']+)', open('jsmin/__init__.py').read()).group(1),
16 description='JavaScript minifier.\nPLEASE UPDATE TO VERSION >= 2.0.6. Older versions have a serious bug related to comments.',
17 long_description=open('README.rst').read(),
18 author='Dave St.Germain',
19 author_email='dave@st.germa.in',
20 maintainer='Tikitu de Jager',
21 maintainer_email='tikitu+jsmin@logophile.org',
22 test_suite='jsmin.test.JsTests',
23 license='MIT License',
24 url='https://bitbucket.org/dcs/jsmin/',
26 'Development Status :: 5 - Production/Stable',
27 'Environment :: Web Environment',
28 'Intended Audience :: Developers',
29 'License :: OSI Approved :: MIT License',
30 'Operating System :: OS Independent',
31 'Programming Language :: Python :: 2',
32 'Programming Language :: Python :: 2.6',
33 'Programming Language :: Python :: 2.7',
34 'Programming Language :: Python :: 3',
35 'Programming Language :: Python :: 3.2',
36 'Programming Language :: Python :: 3.3',
37 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
38 'Topic :: Software Development :: Pre-processors',
39 'Topic :: Text Processing :: Filters',