Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions py-rattler/rattler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@
PypiLockedPackage,
)
from rattler.solver import solve, solve_with_sparse_repodata
from rattler.config import (
Config,
ConcurrencyConfig,
ProxyConfig,
RepodataConfig,
RepodataChannelConfig,
S3Options,
)

__version__ = _get_rattler_version()
del _get_rattler_version
Expand Down Expand Up @@ -103,6 +111,12 @@
"NoArchLiteral",
"Link",
"LinkType",
"Config",
"ConcurrencyConfig",
"ProxyConfig",
"RepodataConfig",
"RepodataChannelConfig",
"S3Options",
]

# PTY support - only available on Unix platforms
Expand Down
17 changes: 17 additions & 0 deletions py-rattler/rattler/config/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from rattler.config.config import (
Config,
ConcurrencyConfig,
ProxyConfig,
RepodataConfig,
RepodataChannelConfig,
S3Options,
)

__all__ = [
"Config",
"ConcurrencyConfig",
"ProxyConfig",
"RepodataConfig",
"RepodataChannelConfig",
"S3Options",
]
Loading