Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
packme
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PaNOSC
Data Analysis Services
packme
Commits
ab095296
Commit
ab095296
authored
Jan 17, 2020
by
eric pellegrini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added stub file for the whole project
parent
ad1d9f76
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
0 deletions
+39
-0
stubs/packme/PackerTemplate.pyi
stubs/packme/PackerTemplate.pyi
+20
-0
stubs/packme/Packman.pyi
stubs/packme/Packman.pyi
+8
-0
stubs/packme/__init__.pyi
stubs/packme/__init__.pyi
+0
-0
stubs/packme/__pkginfo__.pyi
stubs/packme/__pkginfo__.pyi
+11
-0
No files found.
stubs/packme/PackerTemplate.pyi
0 → 100644
View file @
ab095296
from typing import Any, List
class PackerTemplate:
def __init__(self, name: str, yaml_node: dict, packages: List[str]) -> None: ...
@property
def builders(self) -> list: ...
@property
def description(self) -> str: ...
@property
def name(self) -> str: ...
@property
def parameters(self) -> dict: ...
@property
def postprocessors(self) -> list: ...
@property
def provisioners(self) -> list: ...
@property
def variables(self) -> dict: ...
def set_parent(self, parent_template: PackerTemplate) -> Any: ...
def dump(self, output_file: str, **kwargs: Any) -> Any: ...
stubs/packme/Packman.pyi
0 → 100644
View file @
ab095296
from typing import Any, List, Optional
class Packman:
def __init__(self, input_file: str, templates_base_dir: str) -> None: ...
def get_templates_selection(self, selected_templates: Optional[Any]=...) -> Any: ...
def get_template(self, template_name: Any) -> Any: ...
def run(self, selected_templates: Optional[List[str]]=..., log: Optional[bool]=...) -> Any: ...
def build(self, selected_templates: Optional[List[str]]=..., **kwargs: Any) -> Any: ...
stubs/packme/__init__.pyi
0 → 100644
View file @
ab095296
stubs/packme/__pkginfo__.pyi
0 → 100644
View file @
ab095296
from typing import List
__author_email__: str
__credits__: List[str]
__description__: str
__maintainer__: str
__maintainer_email__: str
__status__: str
__url__: str
__long_description_content_type__: str
__classifiers__: List[str]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment