-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.08 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
from setuptools import setup
with open('README.md') as fh:
long_description = fh.read()
setup(
name='Flask-Pusher',
version='3.0',
url='https://www.github.com/iurisilvio/Flask-Pusher',
license='MIT',
author='Iuri de Silvio',
author_email='iurisilvio@gmail.com',
description='Flask extension for Pusher',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['flask_pusher'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'pusher<3',
'Flask-Jsonpify', # for jsonp auth support
],
test_suite="tests",
tests_require=[
'mock<=3.0.5',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)