Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abuchanan authored and BonsaiDen committed May 28, 2010
1 parent 8902d76 commit 34e2239
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from setuptools import setup

setup(
name='twitter-text-python',
version='1.0',
description='Tweet parser and formatter',
long_description=open('README.rst').read(),
author='Ivo Wetzel',
author_email='',
url='http://github.com/abuchanan/twitter-text-python',
license='GPL',
packages=['ttp'],
include_package_data=True,
zip_safe=False,
install_requires=[],
classifiers=[
'Environment :: Web Environment',
# I don't know what exactly this means, but why not?
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)

0 comments on commit 34e2239

Please sign in to comment.