Skip to content

Commit

Permalink
Switch from distutils to setup tools, and add clevercss console scrip…
Browse files Browse the repository at this point in the history
…t (using clevercss.main as entry point)
  • Loading branch information
dbr committed May 25, 2009
1 parent b15667a commit b3d502d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
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
from setuptools import setup
setup(
name='CleverCSS',
author='Armin Ronacher',
Expand All @@ -85,5 +85,11 @@
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python'
]
],
entry_points = {
'console_scripts':[
'clevercss = clevercss:main'
]
},

)

0 comments on commit b3d502d

Please sign in to comment.