forked from BonsaiDen/twitter-text-python
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
26 lines (25 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
setup(
name='twitter-text-python',
version='1.0.1',
description='Twitter Tweet parser and formatter',
long_description="Extract @users, #hashtags and URLs (and unwind shortened links) from tweets including entity locations, also generate HTML for output. Visit https://github.com/ianozsvald/twitter-text-python for examples.",
#open('README.rst').read(),
author='Maintained by Ian Ozsvald (originally by Ivo Wetzel)',
author_email='[email protected]',
url='https://github.com/ianozsvald/twitter-text-python',
license='MIT',
packages=['ttp'],
include_package_data=True,
zip_safe=False,
install_requires=[],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
]
)