-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
49 lines (45 loc) · 1.34 KB
/
setup.cfg
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
48
49
[metadata]
name = pyramid-marshmallow
version = 0.8.0
author = Theron Luhn
author_email = theron@luhn.com
description = Validate request and response data with Marshmallow and optionally generate an OpenAPI spec.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/luhn/pyramid-marshmallow
classifiers =
Development Status :: 3 - Alpha
Framework :: Pyramid
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python
[options]
packages = find:
python_requires = >=3.7
install_requires =
pyramid>=1.7
marshmallow~=3.0
zope.interface>=3.8.0
[options.extras_require]
openapi =
apispec>=3.0,<7
PyYAML>=5.4,<7
testing =
pytest~=6.2
webtest~=2.0
linting =
ruff~=0.7.0
[options.entry_points]
console_scripts =
generate-spec = pyramid_marshmallow.openapi.generate:generate
serve-spec = pyramid_marshmallow.openapi.serve:serve