python-setenv 0.0.1__tar.gz → 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_setenv-0.0.1 → python_setenv-0.1.0}/PKG-INFO +1 -1
- {python_setenv-0.0.1 → python_setenv-0.1.0}/pyproject.toml +1 -4
- {python_setenv-0.0.1 → python_setenv-0.1.0}/src/setenv/__init__.py +0 -4
- {python_setenv-0.0.1 → python_setenv-0.1.0}/.gitignore +0 -0
- {python_setenv-0.0.1 → python_setenv-0.1.0}/.python-version +0 -0
- {python_setenv-0.0.1 → python_setenv-0.1.0}/README.md +0 -0
- {python_setenv-0.0.1 → python_setenv-0.1.0}/src/setenv/py.typed +0 -0
- {python_setenv-0.0.1 → python_setenv-0.1.0}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "python-setenv"
|
|
3
|
-
version = "0.0
|
|
3
|
+
version = "0.1.0"
|
|
4
4
|
description = "Set env (e.g. HF_TOKEN) from colab/kaggle secrets or dotenv .env env files"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -14,6 +14,3 @@ dependencies = [
|
|
|
14
14
|
[build-system]
|
|
15
15
|
requires = ["hatchling"]
|
|
16
16
|
build-backend = "hatchling.build"
|
|
17
|
-
|
|
18
|
-
[tool.hatch.build.targets.wheel]
|
|
19
|
-
packages = ["src/setenv"]
|
|
@@ -11,8 +11,6 @@ from pathlib import Path
|
|
|
11
11
|
from dotenv import dotenv_values, find_dotenv
|
|
12
12
|
# from loguru import logger
|
|
13
13
|
|
|
14
|
-
__version__ = "0.0.1"
|
|
15
|
-
|
|
16
14
|
|
|
17
15
|
def hello() -> str:
|
|
18
16
|
return "Hello from python-setenv!"
|
|
@@ -127,5 +125,3 @@ def setenv(
|
|
|
127
125
|
print(f"Restore {env_var=}")
|
|
128
126
|
|
|
129
127
|
return ""
|
|
130
|
-
|
|
131
|
-
__all__ = ("__version__", "setenv",)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|