-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (43 loc) · 1.29 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
from setuptools import find_packages, setup
setup(
name="apistrap",
version="0.10.0",
description="Iterait REST API utilities",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
keywords="api rest http",
url="https://github.com/iterait/apistrap",
author=["Iterait a.s.", "Cognexa Solutions s.r.o."],
author_email="hello@iterait.com",
license="MIT",
packages=find_packages(".", exclude="tests"),
package_data={"apistrap": ["templates/*.html"]},
zip_safe=False,
setup_requires=["pytest-runner"],
tests_require=[
"pytest",
"pytest-mock",
"pytest-flask",
"pytest-aiohttp",
"flask<=1.1.4",
"aiohttp<4.0.0",
"markupsafe<2.0.0",
],
install_requires=[
"apispec==1.2",
"pydantic",
"more_itertools",
"Werkzeug",
"jinja2",
"docstring_parser>=0.5",
"markupsafe<2.0.0",
],
extras_require={"flask": ["flask<=1.1.4"], "aiohttp": ["aiohttp<4.0.0"]},
)