forked from BonsaiDen/twitter-text-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 704 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='ttp',
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=[],
include_package_data=True,
zip_safe=False,
install_requires=[],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)