-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
47 lines (45 loc) · 1.49 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
import re
import os
from setuptools import setup, find_packages
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
LONG_DESCRIPTION = ''
setup(
name='Flask-Validator',
version='1.4.2',
license='Mozilla Public License',
author='Jesus Roldan',
author_email='jesus.roldan@gmail.com',
description="Data validator for Flask and SQL-Alchemy, working at Model component with events",
long_description=LONG_DESCRIPTION,
url='https://github.com/xeBuz/Flask-Validator',
packages=find_packages(),
platforms='any',
test_suite='nose.collector',
install_requires=[
'Flask-SQLAlchemy==2.4.4',
'email_validator==1.1.2',
'iso3166==1.0.1',
'pytz==2020.4',
'isbnlib==3.10.4',
'py-moneyed==0.8.0',
'schwifty==2020.11.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)