Skip to content

Commit 34e2239

Browse files
abuchananBonsaiDen
abuchanan
authored andcommitted
add setup.py
1 parent 8902d76 commit 34e2239

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from setuptools import setup
2+
3+
setup(
4+
name='twitter-text-python',
5+
version='1.0',
6+
description='Tweet parser and formatter',
7+
long_description=open('README.rst').read(),
8+
author='Ivo Wetzel',
9+
author_email='',
10+
url='http://github.com/abuchanan/twitter-text-python',
11+
license='GPL',
12+
packages=['ttp'],
13+
include_package_data=True,
14+
zip_safe=False,
15+
install_requires=[],
16+
classifiers=[
17+
'Environment :: Web Environment',
18+
# I don't know what exactly this means, but why not?
19+
'Intended Audience :: Developers',
20+
'License :: OSI Approved :: BSD License',
21+
'Operating System :: OS Independent',
22+
'Programming Language :: Python',
23+
'Topic :: Software Development :: Libraries :: Python Modules',
24+
]
25+
)

0 commit comments

Comments
 (0)