Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
merging in lericson's setup.py and MANIFEST additions
  • Loading branch information
jaredly committed Jun 19, 2010
2 parents f5a98c9 + 5129131 commit 6faa4ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -6,3 +6,4 @@
CleverCSS.egg-info
build
dist
MANIFEST
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include README.rst BUGFIXES extract_sprites.py sprites_format.txt
include setup.py clevercss.py
recursive-include tests *.py
11 changes: 3 additions & 8 deletions setup.py
@@ -1,14 +1,9 @@
from setuptools import setup
import os

f = open("README.rst")
try:
try:
readme_text = f.read()
except:
readme_text = ""
finally:
f.close()
fp = open(os.path.join(os.path.dirname(__file__), "README.rst"))
readme_text = fp.read()
fp.close()

setup(
name='CleverCSS',
Expand Down

0 comments on commit 6faa4ed

Please sign in to comment.