setup.py script for a greyscale project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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