Skip to content

Commit

Permalink
Rename readme and use it from setuptools
Browse files Browse the repository at this point in the history
Signed-off-by: lericson <ludvig@lericson.se>
  • Loading branch information
jbergstroem authored and lericson committed Dec 17, 2009
1 parent 6adafeb commit 32d1ac3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 72 deletions.
File renamed without changes.
84 changes: 12 additions & 72 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,75 +1,16 @@
"""\
=========
CleverCSS
=========
import os

CleverCSS is a small markup language for CSS inspired by Python that can be used
to build a style sheet in a clean and structured way. In many ways it's cleaner
and more powerful than CSS2 is.
f = open("README.rst")
try:
try:
readme_text = f.read()
except:
readme_text = ""
finally:
f.close()

The most obvious difference to CSS is the syntax: it is indentation based and
not flat. While this is obviously against the Python Zen, it's nonetheless a
good idea for structural styles.
Nutshell
========
To get an idea of how CleverCSS works you can see a small example below. Note
the indentation based syntax and how you can nest rules::
ul#comments, ol#comments:
margin: 0
padding: 0
li:
padding: 0.4em
margin: 0.8em 0 0.8em
h3:
font-size: 1.2em
p:
padding: 0.3em
p.meta:
text-align: right
color: #ddd
Of course you can do the very same in CSS, but because of its flat nature the
code would look more verbose. The following piece of code is the CleverCSS
output of the above file::
ul#comments,
ol#comments {
margin: 0;
padding: 0;
}
ul#comments li,
ol#comments li {
padding: 0.4em;
margin: 0.8em 0 0.8em;
}
ul#comments li h3,
ol#comments li h3 {
font-size: 1.2em;
}
ul#comments li p,
ol#comments li p {
padding: 0.3em;
}
ul#comments li p.meta,
ol#comments li p.meta {
text-align: right;
color: #dddddd;
}
But that's only a small example of what you can do with CleverCSS. Have a look
at the following documentation of CleverCSS for more details.
"""
from distutils.core import setup

setup(
name='CleverCSS',
author='Armin Ronacher',
Expand All @@ -78,9 +19,8 @@
url='http://sandbox.pocoo.org/clevercss/',
py_modules=['clevercss'],
description='funky css preprocessor dammit',
long_description=__doc__,
long_description=readme_text,
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python'
]
'Programming Language :: Python']
)

0 comments on commit 32d1ac3

Please sign in to comment.