gdritter repos shitbird / master setup.py
master

Tree @master (Download .tar.gz)

setup.py @masterraw · history · blame

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

config = {
    'description': 'client for bird web site',
    'author': 'Getty Ritter',
    'url': 'http://projects.gdritter.com/shitbird/',
    'download_url': 'foo',
    'author_email': 'gettyritter@gmail.com',
    'version': '0.1',
    'install_requires': ['pysqlite3',
                         'flask',
                         'tweepy'],
    'packages': ['shitbird'],
    'scripts': ['scripts/shitbird'],
    'name': 'shitbird',
}

setup(**config)