forked from coleifer/flask-peewee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.29 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
import sys
from setuptools import setup, find_packages
requirements = ['Flask', 'werkzeug', 'jinja2', 'peewee>=3.0.0', 'wtforms', 'wtf-peewee']
if sys.version_info[:2] < (2, 6):
requirements.append('simplejson')
setup(
name='flask-peewee',
version='3.0.5',
url='http://github.com/coleifer/flask-peewee/',
license='MIT',
author='Charles Leifer',
author_email='[email protected]',
description='Peewee integration for flask',
packages=find_packages(),
package_data = {
'flask_peewee': [
'static/*/*.css',
'static/*/*.js',
'static/*/*.gif',
'static/*/*.png',
'templates/*.html',
'templates/*/*.html',
'templates/*/*/*.html',
'tests/*.html',
'tests/*/*.html',
],
},
zip_safe=False,
platforms='any',
install_requires=requirements,
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'
],
test_suite='runtests.runtests',
)