Created
March 28, 2013 13:25
-
-
Save bmacauley/5263104 to your computer and use it in GitHub Desktop.
setup.py skeleton
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 | |
config = { | |
'description': 'My Project', | |
'author': 'My Name', | |
'url': 'URL to get it at.', | |
'download_url': 'Where to download it.', | |
'author_email': 'My email.', | |
'version': '0.1', | |
'install_requires': ['nose'], | |
'packages': ['NAME'], | |
'scripts': [], | |
'name': 'projectname' | |
} | |
setup(**config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment