-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
39 lines (37 loc) · 1.25 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
from setuptools import setup, find_packages
setup(
name='flask-sieve',
description='A Laravel inspired requests validator for Flask',
long_description='Find the documentation at https://flask-sieve.readthedocs.io/en/latest/',
version='2.0.1',
url='https://github.com/codingedward/flask-sieve',
license='BSD-2',
author='Edward Njoroge',
author_email='codingedward@gmail.com',
maintainer='Edward Njoroge',
maintainer_email='codingedward@gmail.com',
install_requires=[
'Flask',
'Pillow',
'python-dateutil',
'pytz',
'requests',
'filetype',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages(),
project_urls={
'Funding': 'https://donate.pypi.org',
'Source': 'https://github.com/codingedward/flask-sieve/',
'Tracker': 'https://github.com/codingedward/flask-sieve/issues',
},
python_requires='>=3.6',
zip_safe=False
)