File: setup.py

package info (click to toggle)
python-csscompressor 0.9.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,804 kB
  • sloc: python: 1,787; makefile: 15
file content (43 lines) | stat: -rw-r--r-- 1,105 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup


extra = {}
f = open('README.rst', 'r')
try:
    extra['long_description'] = f.read()
finally:
    f.close()


deps = []
try:
    import argparse
except ImportError:
    deps.append('argparse')


setup(
    name='csscompressor',
    version='0.9.5',
    url='http://github.com/sprymix/csscompressor',
    license='BSD',
    author='Yury Selivanov',
    author_email='info@sprymix.com',
    description='A python port of YUI CSS Compressor',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 2.6',
        'Topic :: Software Development :: Build Tools',
        'Topic :: Text Processing :: General',
        'Topic :: Utilities'
    ],
    packages=['csscompressor', 'csscompressor.tests'],
    install_requires=deps,
    **extra
)