-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Python wheel-based builds and publishing (#981)
This feature enables wheel-based builds and PyPI publishing for the provider's Python SDK. It is part of a larger rollout across all providers pulumi/home#2883
- Loading branch information
Showing
6 changed files
with
35 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[project] | ||
name = "pulumi_eks" | ||
description = "Pulumi Amazon Web Services (AWS) EKS Components." | ||
dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "pulumi-aws>=6.0.0,<7.0.0", "pulumi-kubernetes>=4.0.0,<5.0.0", "semver>=2.8.1"] | ||
keywords = ["pulumi", "aws", "eks"] | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
version = "0.0.0" | ||
[project.license] | ||
text = "Apache-2.0" | ||
[project.urls] | ||
Homepage = "https://pulumi.com" | ||
Repository = "https://github.com/pulumi/pulumi-eks" | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool] | ||
[tool.setuptools] | ||
[tool.setuptools.package-data] | ||
pulumi_eks = ["py.typed", "pulumi-plugin.json"] |
This file was deleted.
Oops, something went wrong.