forked from demospace-ai/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (36 loc) · 1.07 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
"""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="fabra",
version="0.20.2",
author="fabra",
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-speakeasy==0.5.8",
"idna==3.3",
"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",
"pylint==2.16.2",
],
package_dir={'': 'src'},
python_requires='>=3.9'
)