-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 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
from setuptools import setup, find_packages
from flask_websub import __version__
with open('README.md', encoding='UTF-8') as f:
description = f.read()
setup(
name='Flask-WebSub',
version=__version__,
url='https://github.com/marten-de-vries/Flask-WebSub',
license='ISC',
author='Marten de Vries',
author_email='[email protected]',
description='A WebSub hub, publisher and subscriber using Flask',
long_description=description,
long_description_content_type='text/markdown',
packages=find_packages(),
zip_safe=False,
platforms='any',
install_requires=['Flask', 'requests'],
extras_require={
'celery': ['celery>=4.3.0'],
'redis': ['redis'],
'dev': [
'flake8',
'pyOpenSSL',
'pytest',
'pytest-cov',
'pytest-runner',
'Sphinx',
'Sphinx-PyPI-upload',
],
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)