generated from speakeasy-sdks/template-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (39 loc) · 1.13 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
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
import setuptools
try:
with open("README.md", "r") as fh:
long_description = fh.read()
except FileNotFoundError:
long_description = ""
setuptools.setup(
name="Petstore",
version="1.24.0",
author="Speakeasy",
description="Python Client SDK Generated by Speakeasy",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(where="src"),
install_requires=[
"certifi>=2022.12.7",
"charset-normalizer>=2.1.1",
"dataclasses-json>=0.5.12",
"idna>=3.3",
"jsonpath-python>=1.0.6 ",
"marshmallow>=3.17.1",
"marshmallow-enum>=1.5.1",
"mypy-extensions>=0.4.3",
"packaging>=21.3",
"pyparsing>=3.0.9",
"python-dateutil>=2.8.2",
"requests>=2.28.1",
"six>=1.16.0",
"typing-inspect>=0.8.0",
"typing_extensions>=4.3.0",
"urllib3>=1.26.12",
],
extras_require={
"dev":["pylint==2.16.2"]
},
package_dir={'': 'src'},
python_requires='>=3.9'
)