-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathsetup.py
47 lines (45 loc) · 1.35 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
from setuptools import setup, find_packages
setup(
name='flask-peewee',
version='0.5.0',
url='http://github.com/coleifer/flask-peewee/',
license='BSD',
author='Charles Leifer',
author_email='coleifer@gmail.com',
description='Peewee integration for flask',
packages=find_packages(),
package_data = {
'example': [
'example.db',
'requirements.txt',
'static/*.css',
'templates/*.html',
'templates/*/*.html',
],
'flask_peewee': [
'static/*/*.css',
'static/*/*.js',
'static/*/*.gif',
'templates/*.html',
'templates/*/*.html',
'templates/*/*/*.html',
'tests/*.html',
'tests/*/*.html',
],
},
zip_safe=False,
platforms='any',
install_requires=[
'Flask', 'werkzeug', 'jinja2', 'peewee>=0.9.0', 'wtforms', 'wtf-peewee',
],
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',
)