Created
October 24, 2008 14:41
-
-
Save mrkurt/19443 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from setuptools import setup | |
setup(name='twittersmash', | |
version='0.1', | |
description='Ars Technica\'s twitter publishing application', | |
author='Clint Ecker, Kurt Mackey', | |
author_email='[email protected]', | |
url='https://github.com/ArsTechnica/twittersmash/tree/master', | |
packages=['twittersmash',], | |
entry_points={'django.apps': 'twittersmash = twittersmash'}, | |
classifiers=['Development Status :: 4 - Beta', | |
'Environment :: Web Environment', | |
'Intended Audience :: Developers', | |
'Operating System :: OS Independent', | |
'Programming Language :: Python', | |
'Topic :: Utilities'], | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment