Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
637 changes: 0 additions & 637 deletions .openapi-generator/custom_templates/configuration.mustache

This file was deleted.

This file was deleted.

1,737 changes: 0 additions & 1,737 deletions .openapi-generator/custom_templates/model_utils.mustache

This file was deleted.

19 changes: 12 additions & 7 deletions .openapi-generator/custom_templates/setup.mustache
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# coding: utf-8

{{>partial_header}}

from setuptools import setup, find_packages # noqa: H301
Expand All @@ -19,18 +21,21 @@ VERSION = "{{packageVersion}}"
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"urllib3 >= 1.25.3, < 3.0.0",
"python-dateutil >= 2.8.2",
{{#asyncio}}
"aiohttp >= 3.0.0",
"aiohttp >= 3.8.4",
"aiohttp-retry >= 2.8.3",
{{/asyncio}}
{{#tornado}}
"tornado>=4.2,<5",
"tornado>=4.2, < 5",
{{/tornado}}
{{#hasHttpSignatureMethods}}
"pem>=19.3.0",
"pycryptodome>=3.9.0",
"pem >= 19.3.0",
"pycryptodome >= 3.9.0",
{{/hasHttpSignatureMethods}}
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]

setup(
Expand All @@ -41,7 +46,7 @@ setup(
author_email="{{infoEmail}}{{^infoEmail}}team@openapitools.org{{/infoEmail}}",
url="{{packageUrl}}",
keywords=["OpenAPI", "OpenAPI-Generator", "{{{appName}}}"],
python_requires=">=3.6",
python_requires=">=3.8",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
Expand Down
Loading
Loading