-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
30 lines (28 loc) · 922 Bytes
/
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
from setuptools import setup
setup(
name='wtf-peewee',
version='3.0.6',
url='https://github.com/coleifer/wtf-peewee/',
license='MIT',
author='Charles Leifer',
author_email='[email protected]',
description='WTForms integration for peewee models',
packages=['wtfpeewee'],
zip_safe=False,
platforms='any',
install_requires=[
'peewee>=3.0.0', 'wtforms',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='runtests.runtests'
)