Skip to content

Commit

Permalink
use newer setup-python gh action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrig committed Dec 26, 2023
1 parent e4ea185 commit a5b2c10
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ def run(self):

# Build the gRPC stubs
grpc_tools.protoc.main([
'grpc_tools.protoc',
'-I{}'.format(self.GRPC_PROTO_PATH),
'--python_out={}'.format(self.PYTHON_OUT_PATH),
'--grpc_python_out={}'.format(self.PYTHON_OUT_PATH),
"grpc_tools.protoc",
"-I{}".format(self.GRPC_PROTO_PATH),
"--python_out={}".format(self.PYTHON_OUT_PATH),
"--grpc_python_out={}".format(self.PYTHON_OUT_PATH),
os.path.join(self.GRPC_PROTO_PATH, "rpc.proto")
])

Expand Down Expand Up @@ -81,22 +81,28 @@ def run(self):
}
extras_require["all"] = list(itertools.chain(*extras_require.values()))

with open("README.md", "rt") as f:
long_description = f.read()

setup(
name='paramiko-cloud',
version='1.2.1',
version='1.3.0',
packages=[
'paramiko_cloud',
'paramiko_cloud.aws',
'paramiko_cloud.azure',
'paramiko_cloud.gcp',
'paramiko_cloud.protobuf'
"paramiko_cloud",
"paramiko_cloud.dummy",
"paramiko_cloud.aws",
"paramiko_cloud.azure",
"paramiko_cloud.gcp",
"paramiko_cloud.protobuf"
],
include_package_data=True,
url='https://github.com/jasonrig/paramiko-cloud/',
license='MIT',
author='Jason Rigby',
author_email='hello@jasonrig.by',
description='Use cloud-managed keys to sign SSH certificates',
url="https://github.com/jasonrig/paramiko-cloud/",
license="MIT",
author="Jason Rigby",
author_email="hello@jasonrig.by",
description="Use cloud-managed keys to sign SSH certificates",
long_description=long_description,
long_description_content_type='text/markdown',
setup_requires=[
"protobuf_distutils",
"grpcio-tools",
Expand Down

0 comments on commit a5b2c10

Please sign in to comment.