mooch.settings 0.0.1.dev4__tar.gz → 1.0.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.
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/PKG-INFO +2 -2
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/pyproject.toml +6 -2
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/PKG-INFO +2 -2
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/.github/workflows/publish.yml +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/.github/workflows/run_tests.yml +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/.gitignore +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/LICENSE +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/README.md +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/settings.toml +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/setup.cfg +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch/__init__.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch/settings/__init__.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch/settings/filehandler.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch/settings/settings.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch/settings/utils.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/SOURCES.txt +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/dependency_links.txt +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/requires.txt +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/top_level.txt +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/tests/test_file.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/tests/test_settings.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/tests/test_utils.py +0 -0
- {mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/uv.lock +0 -0
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mooch.settings
|
3
|
-
Version: 0.0
|
3
|
+
Version: 1.0.0
|
4
4
|
Summary: Python settings management package (mooch.settings). Uses a TOML file.
|
5
5
|
Author-email: Nick Stuer <nickstuer@duck.com>
|
6
6
|
Project-URL: Homepage, https://github.com/nickstuer/mooch.settings
|
7
7
|
Project-URL: Issues, https://github.com/nickstuer/mooch.settings/issues
|
8
|
-
Classifier: Development Status ::
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
11
|
Classifier: Operating System :: OS Independent
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "mooch.settings"
|
3
|
-
version = "0.0
|
3
|
+
version = "1.0.0"
|
4
4
|
authors = [
|
5
5
|
{ name="Nick Stuer", email="nickstuer@duck.com" },
|
6
6
|
]
|
@@ -10,8 +10,12 @@ requires-python = ">=3.9"
|
|
10
10
|
dependencies = [
|
11
11
|
"toml>=0.10.2",
|
12
12
|
]
|
13
|
+
# How mature is this project? Common values are
|
14
|
+
# 3 - Alpha
|
15
|
+
# 4 - Beta
|
16
|
+
# 5 - Production/Stable
|
13
17
|
classifiers = [
|
14
|
-
"Development Status ::
|
18
|
+
"Development Status :: 5 - Production/Stable",
|
15
19
|
"Programming Language :: Python :: 3",
|
16
20
|
"License :: OSI Approved :: MIT License",
|
17
21
|
"Operating System :: OS Independent",
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mooch.settings
|
3
|
-
Version: 0.0
|
3
|
+
Version: 1.0.0
|
4
4
|
Summary: Python settings management package (mooch.settings). Uses a TOML file.
|
5
5
|
Author-email: Nick Stuer <nickstuer@duck.com>
|
6
6
|
Project-URL: Homepage, https://github.com/nickstuer/mooch.settings
|
7
7
|
Project-URL: Issues, https://github.com/nickstuer/mooch.settings/issues
|
8
|
-
Classifier: Development Status ::
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
11
11
|
Classifier: Operating System :: OS Independent
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
{mooch_settings-0.0.1.dev4 → mooch_settings-1.0.0}/src/mooch.settings.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|