Add setup.py
authorJosh Roesslein <jroesslein@gmail.com>
Mon, 10 Aug 2009 19:01:35 +0000 (14:01 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Mon, 10 Aug 2009 19:01:35 +0000 (14:01 -0500)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..267901e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python
+#from distutils.core import setup
+from setuptools import setup, find_packages
+
+setup(name="tweepy",
+      version="1.0",
+      description="Twitter library for python",
+      license="MIT",
+      author="Joshua Roesslein",
+      author_email="tweepy@googlegroups.com",
+      url="http://gitorious.org/tweepy",
+      packages = find_packages(),
+      keywords= "twitter wrapper library",
+      zip_safe = True)