| Index: third_party/pyscss/setup.py
|
| diff --git a/third_party/pyscss/setup.py b/third_party/pyscss/setup.py
|
| deleted file mode 100644
|
| index 53500887c17a7f49bc366427df4d2c6261e47d1b..0000000000000000000000000000000000000000
|
| --- a/third_party/pyscss/setup.py
|
| +++ /dev/null
|
| @@ -1,56 +0,0 @@
|
| -#!/usr/bin/env python
|
| -import os
|
| -
|
| -from setuptools import setup, find_packages
|
| -
|
| -from scss import VERSION, PROJECT, LICENSE
|
| -
|
| -
|
| -def read( fname ):
|
| - try:
|
| - return open( os.path.join( os.path.dirname( __file__ ), fname ) ).read()
|
| - except IOError:
|
| - return ''
|
| -
|
| -
|
| -META_DATA = dict(
|
| - name=PROJECT,
|
| - version=VERSION,
|
| - license=LICENSE,
|
| - description=read( 'DESCRIPTION' ),
|
| - long_description=read( 'README.rst' ),
|
| - platforms=('Any'),
|
| -
|
| - author='Kirill Klenov',
|
| - author_email='horneds@gmail.com',
|
| - url='http://github.com/klen/python-scss',
|
| -
|
| - keywords= 'css sass scss precompiler',
|
| - classifiers=[
|
| - 'Development Status :: 4 - Beta',
|
| - 'Intended Audience :: Developers',
|
| - 'Natural Language :: Russian',
|
| - 'Natural Language :: English',
|
| - 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
|
| - 'Programming Language :: Python',
|
| - 'Environment :: Console',
|
| - 'Topic :: Software Development :: Code Generators',
|
| - 'Topic :: Text Processing :: Markup',
|
| - ],
|
| -
|
| - packages=find_packages(),
|
| -
|
| - install_requires = [ 'pyparsing' ],
|
| -
|
| - entry_points={
|
| - 'console_scripts': [
|
| - 'scss = scss.tool:main',
|
| - ]
|
| - },
|
| -)
|
| -
|
| -
|
| -if __name__ == "__main__":
|
| - setup( **META_DATA )
|
| -
|
| -
|
|
|