-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (46 loc) · 1.33 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
Flask-Tweepy
------------
Tweet easily from Flask applications.
Installation
============
Flask-Tweepy is pip-installable:
pip install Flask-Tweepy
You can install the latest development snapshot like so:
pip install http://github.com/dcrosta/flask-tweepy/tarball/master#egg=Flask-Tweepy-dev
Development
===========
Source code is hosted in `GitHub <https://github.com/dcrosta/flask-tweepy>`_
(contributions are welcome!)
"""
from setuptools import setup
setup(
name='Flask-Tweepy',
version='0.1',
url='http://flask-tweepy.readthedocs.org/',
license='BSD',
author='Dan Crosta',
author_email='[email protected]',
description='Tweet easily from Flask applications',
long_description=__doc__,
zip_safe=False,
platforms='any',
py_modules=['flask_tweepy'],
install_requires=[
'Flask >= 0.8',
'tweepy >= 1.8, <1.9',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
tests_require=[
'nose',
],
test_suite='nose.collector',
)