Cleaning up a bit
[ci skip]
This commit is contained in:
parent
b0c7b74e3b
commit
4327ff30df
3 changed files with 7 additions and 12 deletions
15
setup.py
15
setup.py
|
|
@ -18,26 +18,19 @@ if sys.argv[-1] == 'publish':
|
|||
sys.exit()
|
||||
|
||||
setup(
|
||||
# Basic package information.
|
||||
name='twython',
|
||||
version=__version__,
|
||||
packages=packages,
|
||||
|
||||
# Packaging options.
|
||||
include_package_data=True,
|
||||
|
||||
# Package dependencies.
|
||||
install_requires=['requests==1.2.2', 'requests_oauthlib==0.3.2'],
|
||||
|
||||
# Metadata for PyPI.
|
||||
author='Ryan McGrath',
|
||||
author_email='ryan@venodesigns.net',
|
||||
license='MIT License',
|
||||
url='http://github.com/ryanmcgrath/twython/tree/master',
|
||||
license=open('LICENSE').read(),
|
||||
url='https://github.com/ryanmcgrath/twython/tree/master',
|
||||
keywords='twitter search api tweet twython stream',
|
||||
description='Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs',
|
||||
long_description=open('README.rst').read() + '\n\n' +
|
||||
open('HISTORY.rst').read(),
|
||||
include_package_data=True,
|
||||
packages=packages,
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue