Skip to content

Commit

Permalink
Added the setuptools file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed May 3, 2011
1 parent 282f0b7 commit 5b98cfe
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitignore
@@ -1,3 +1,6 @@
._*
.DS_Store

build/*
dist/*
*.egg-info/*
*.pyc
18 changes: 18 additions & 0 deletions setup.py
@@ -0,0 +1,18 @@
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages


setup(name='python-twitpic',
install_requires=('oauth',),
description='Python TwitPic client API',
author='Chris McMichael',
author_email='macmichael01@gmail.com',
url="https://github.com/macmichael01/python-twitpic",
version='2.0',
packages = find_packages(),
long_description="Python TwitPic client API",
keywords="twitpic photos tweets",
license="BSD",
zip_safe = True
)

0 comments on commit 5b98cfe

Please sign in to comment.