We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8902d76 commit 34e2239Copy full SHA for 34e2239
setup.py
@@ -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