Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
[gecko.git] / python / jsmin / setup.py
blob8fff56602335bdc54ac4cbac16e860a62377c2b5
1 from setuptools import setup
3 import os, sys, re
5 os.environ['COPYFILE_DISABLE'] = 'true' # this disables including resource forks in tar files on os x
8 extra = {}
9 if sys.version_info >= (3,0):
10 extra['use_2to3'] = True
12 setup(
13 name="jsmin",
14 version=re.search(r'__version__ = ["\']([^"\']+)', open('jsmin/__init__.py').read()).group(1),
15 packages=['jsmin'],
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/',
25 classifiers=[
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',
41 **extra