-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (45 loc) · 1.37 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
# -*- coding: UTF-8 -*-
"""
Flask-Wire
-------------
Flask extension that implements "Html over the wire"
"""
try:
from setuptools import setup
except:
from distutils.core import setup
import codecs
version = '1.0.4'
setup(
name='Flask-Wire',
version=version,
url='https://github.com/michaelbukachi/flask-wire',
license='MIT',
author='Michael Bukachi',
author_email='michaelbukachi@gmail.com',
description='Flask extension that implements "Html over the wire"',
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
packages=['flask_wire'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.11'
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)