mirror of
https://github.com/LukeHagar/speakeasy-playground.git
synced 2025-12-08 12:47:46 +00:00
demonstrate verison header getting transformed to timestamp
This commit is contained in:
20
setup.py
20
setup.py
@@ -3,19 +3,19 @@
|
||||
import setuptools
|
||||
|
||||
try:
|
||||
with open("README.md", "r") as fh:
|
||||
with open('README.md', 'r') as fh:
|
||||
long_description = fh.read()
|
||||
except FileNotFoundError:
|
||||
long_description = ""
|
||||
long_description = ''
|
||||
|
||||
setuptools.setup(
|
||||
name="shippo-api-client",
|
||||
version="0.0.1",
|
||||
author="Speakeasy",
|
||||
description="Python Client SDK Generated by Speakeasy",
|
||||
name='shippo-api-client',
|
||||
version='0.1.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"),
|
||||
long_description_content_type='text/markdown',
|
||||
packages=setuptools.find_packages(where='src'),
|
||||
install_requires=[
|
||||
"certifi>=2023.7.22",
|
||||
"charset-normalizer>=3.2.0",
|
||||
@@ -34,10 +34,12 @@ setuptools.setup(
|
||||
],
|
||||
extras_require={
|
||||
"dev": [
|
||||
"httpretty==1.1.4",
|
||||
"pylint==2.16.2",
|
||||
"pytest==8.1.1",
|
||||
],
|
||||
},
|
||||
package_dir={'': 'src'},
|
||||
python_requires='>=3.8',
|
||||
package_data={"shippo-api-client": ["py.typed"]},
|
||||
package_data={'shippo-api-client': ['py.typed']},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user