Add some dummy package-ey files
Getty Ritter
9 years ago
| 1 | try: | |
| 2 | from setuptools import setup | |
| 3 | except ImportError: | |
| 4 | from distutils.core import setup | |
| 5 | ||
| 6 | config = { | |
| 7 | 'description': 'client for bird web site', | |
| 8 | 'author': 'Getty Ritter', | |
| 9 | 'url': 'http://projects.gdritter.com/shitbird/', | |
| 10 | 'download_url': 'foo', | |
| 11 | 'author_email': 'gettyritter@gmail.com', | |
| 12 | 'version': '0.1', | |
| 13 | 'install_requires': ['pysqlite3', | |
| 14 | 'flask', | |
| 15 | 'tweepy'], | |
| 16 | 'packages': ['shitbird'], | |
| 17 | 'scripts': ['scripts/shitbird'], | |
| 18 | 'name': 'shitbird', | |
| 19 | } | |
| 20 | ||
| 21 | setup(**config) |