-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
43 lines (37 loc) · 1.08 KB
/
setup.py
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
)