Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: third_party/pyscss/setup.py

Issue 9111023: Pyscss is obsolete with Dart CSS complier; remove all pyscss code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove pyparsing from .gitignore Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/pyscss/scss/value.py ('k') | third_party/pyscss/todo.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 )
-
-
« no previous file with comments | « third_party/pyscss/scss/value.py ('k') | third_party/pyscss/todo.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698