Package io.github.cdklabs.projen.python
Interface PoetryPyprojectOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,PoetryPyprojectOptionsWithoutDeps
- All Known Implementing Classes:
PoetryPyprojectOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.228Z") @Stability(Experimental) public interface PoetryPyprojectOptions extends software.amazon.jsii.JsiiSerializable, PoetryPyprojectOptionsWithoutDeps
(experimental) Poetry-specific options.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPoetryPyprojectOptions.BuilderA builder forPoetryPyprojectOptionsstatic classPoetryPyprojectOptions.Jsii$ProxyAn implementation forPoetryPyprojectOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static PoetryPyprojectOptions.Builderbuilder()default Map<String,Object>getDependencies()(experimental) A list of dependencies for the project.default Map<String,Object>getDevDependencies()(experimental) A list of development dependencies for the project.-
Methods inherited from interface io.github.cdklabs.projen.python.PoetryPyprojectOptionsWithoutDeps
getAuthors, getClassifiers, getDescription, getDocumentation, getExclude, getExtras, getHomepage, getInclude, getKeywords, getLicense, getMaintainers, getName, getPackages, getPlugins, getReadme, getRepository, getScripts, getSource, getUrls, getVersion
-
-
-
-
Method Detail
-
getDependencies
@Stability(Experimental) @Nullable default Map<String,Object> getDependencies()
(experimental) A list of dependencies for the project.The python version for which your package is compatible is also required.
Example:
{ requests: "^2.13.0" }
-
getDevDependencies
@Stability(Experimental) @Nullable default Map<String,Object> getDevDependencies()
(experimental) A list of development dependencies for the project.Example:
{ requests: "^2.13.0" }
-
builder
@Stability(Experimental) static PoetryPyprojectOptions.Builder builder()
- Returns:
- a
PoetryPyprojectOptions.BuilderofPoetryPyprojectOptions
-
-