|
10 | 10 |
|
11 | 11 | setuptools.setup(
|
12 | 12 | name="speakeasy-client-sdk-python",
|
13 |
| - version="1.29.1", |
| 13 | + version="1.30.0", |
14 | 14 | author="Speakeasy",
|
15 | 15 | description="Speakeasy API Client SDK for Python",
|
16 | 16 | long_description=long_description,
|
17 | 17 | long_description_content_type="text/markdown",
|
18 | 18 | packages=setuptools.find_packages(where="src"),
|
19 | 19 | install_requires=[
|
20 |
| - "certifi==2022.12.7", |
21 |
| - "charset-normalizer==2.1.1", |
22 |
| - "dataclasses-json-speakeasy==0.5.8", |
23 |
| - "idna==3.3", |
24 |
| - "marshmallow==3.17.1", |
25 |
| - "marshmallow-enum==1.5.1", |
26 |
| - "mypy-extensions==0.4.3", |
27 |
| - "packaging==21.3", |
28 |
| - "pyparsing==3.0.9", |
29 |
| - "python-dateutil==2.8.2", |
30 |
| - "requests==2.28.1", |
31 |
| - "six==1.16.0", |
32 |
| - "typing-inspect==0.8.0", |
33 |
| - "typing_extensions==4.3.0", |
34 |
| - "urllib3==1.26.12", |
35 |
| - "pylint==2.16.2", |
| 20 | + "certifi>=2022.12.7", |
| 21 | + "charset-normalizer>=2.1.1", |
| 22 | + "dataclasses-json-speakeasy>=0.5.8", |
| 23 | + "idna>=3.3", |
| 24 | + "jsonpath-python>=1.0.6 ", |
| 25 | + "marshmallow>=3.17.1", |
| 26 | + "marshmallow-enum>=1.5.1", |
| 27 | + "mypy-extensions>=0.4.3", |
| 28 | + "packaging>=21.3", |
| 29 | + "pyparsing>=3.0.9", |
| 30 | + "python-dateutil>=2.8.2", |
| 31 | + "requests>=2.28.1", |
| 32 | + "six>=1.16.0", |
| 33 | + "typing-inspect>=0.8.0", |
| 34 | + "typing_extensions>=4.3.0", |
| 35 | + "urllib3>=1.26.12", |
36 | 36 | ],
|
| 37 | + extras_require={ |
| 38 | + "dev":["pylint==2.16.2"] |
| 39 | + }, |
37 | 40 | package_dir={'': 'src'},
|
38 | 41 | python_requires='>=3.9'
|
39 | 42 | )
|
0 commit comments