forked from valpackett/cssprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·29 lines (27 loc) · 959 Bytes
/
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
#!/usr/bin/env python
#import sys
from distutils.core import setup
# if sys.version < '2.5':
# sys.exit('Python 2.5 or higher is required')
setup(name='cssprefixer',
version='1.4.2',
description="A tool that rewrites your CSS files, adding vendor-prefixed versions of CSS3 rules.",
# long_description="""""",
license='Apache License 2.0',
author='myfreeweb',
author_email='[email protected]',
url='https://github.com/myfreeweb/cssprefixer',
requires=['cssutils'],
packages=['cssprefixer'],
scripts=['scripts/cssprefixer'],
keywords=['CSS', 'Cascading Style Sheets'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
package_data={},
)