forked from taogeT/flask-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 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
# -*- coding: UTF-8 -*-
"""
Flask-Vue
-------------
Flask supports for Vue.js 1.0+ (Python3 version).
"""
try:
from setuptools import setup
except:
from distutils.core import setup
import codecs
version = '0.3.5'
setup(
name='Flask-Vue',
version=version,
url='https://github.com/taogeT/flask-vue',
license='Apache',
author='Zheng Wentao',
author_email='zwtzjd@gmail.com',
description='Vue.js 1.0+ integration for Flask (Python 3 version)',
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
packages=['flask_vue'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask>=0.11'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)