Make setup.py executable

This commit is contained in:
Mikhail Korobov 2011-05-06 16:29:15 +06:00
commit 1264b81bb6

3
setup.py Normal file → Executable file
View file

@ -1,3 +1,4 @@
#!/usr/bin/env python
from setuptools import setup
import sys
@ -17,7 +18,7 @@ setup(
long_description=open('README.rst').read(),
packages = ['pelican'],
include_package_data = True,
install_requires = requires,
install_requires = requires,
scripts = ['bin/pelican'],
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Console',