forked from apryor6/flask_accepts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 724 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright Alan (AJ) Pryor, Jr. 2018
from setuptools import setup, find_packages
setup(
name="flask_accepts",
author='Alan "AJ" Pryor, Jr.',
author_email="apryor6@gmail.com",
version="1.1.0",
description="Easy, opinionated Flask input/output handling with Flask-restx and Marshmallow",
ext_modules=[],
packages=find_packages(),
install_requires=[
"marshmallow>=3.26,<4",
"flask-restx>=1.2",
"werkzeug>=3,<4",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)