Skip to content

Instantly share code, notes, and snippets.

@benawad
Created October 26, 2014 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benawad/00eab13dfc46fc99c603 to your computer and use it in GitHub Desktop.
Save benawad/00eab13dfc46fc99c603 to your computer and use it in GitHub Desktop.
setup.py script for a greyscale project
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import py2exe
config = {
'description': 'Turn any image to grayscale',
'author': 'Ben Awad',
'url': 'benawad.com',
'download_url': 'Where to download it.',
'author_email': 'benawad97@gmail.com',
'version': '0.1',
'install_requires': ['nose'],
'packages': ['Greyscale'],
'scripts': ['runner.py'],
'name': 'Greyscale',
'console': ['runner.py']
}
setup(**config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment