-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.1 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
"""
WTForms-MongoEngine
--------------
WTForms extensions for Mongoengine.
It's a fork of Flask-Mongoengine, but Flask depedencies were removed.
"""
from setuptools import setup
# Stops exit traceback on tests
try:
import multiprocessing
except:
pass
setup(
name='wtforms-mongoengine',
version='0.1',
url='https://github.com/snahor/wtforms-mongoengine',
license='BSD',
description='WTForms extension for mongoengine',
author="Hans Roman",
author_email="hans@roman.pe",
long_description=__doc__,
zip_safe=False,
platforms='any',
install_requires=[
'mongoengine>=0.8.2',
'wtforms>=1.0.4',
],
packages=['wtforms_mongoengine'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)