myexp 0.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.
myexp-0.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 CAI Jianping
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
File without changes
myexp-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: myexp
3
+ Version: 0.0.0
4
+ Summary: `myexp` is a Python library that simplifies the deployment, management, and execution of research experiments. It allows researchers to easily configure, deploy, and run experiments with flexible environment management and automation.
5
+ Author: Cai Jianping
6
+ Author-email: jpingcai@163.com
7
+ License: MIT Licence
8
+ Keywords: experiment,deploy
9
+ Platform: any
10
+ License-File: LICENSE
11
+ Requires-Dist: uv
12
+ Dynamic: author
13
+ Dynamic: author-email
14
+ Dynamic: description
15
+ Dynamic: keywords
16
+ Dynamic: license
17
+ Dynamic: license-file
18
+ Dynamic: platform
19
+ Dynamic: requires-dist
20
+ Dynamic: summary
21
+
22
+ `myexp` is a Python library aimed at providing researchers with an easy-to-use toolkit for managing and executing experiment tasks. Whether it's machine learning experiments, data analysis tasks, or other types of research experiments, `myexp` enables users to quickly set up experiment environments, manage experiment configurations, and automate experiment execution. By integrating with `pip` and virtual environments, `myexp` ensures that each experiment runs in a consistent and controlled environment, avoiding issues related to inconsistent environment setups. The library is designed to be highly modular, supporting user-defined experiment configuration files such as hyperparameters, dataset paths, model configurations, and more. Users can not only manage experiment dependencies flexibly but also schedule experiment tasks, monitor progress, and collect results seamlessly.
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: myexp
3
+ Version: 0.0.0
4
+ Summary: `myexp` is a Python library that simplifies the deployment, management, and execution of research experiments. It allows researchers to easily configure, deploy, and run experiments with flexible environment management and automation.
5
+ Author: Cai Jianping
6
+ Author-email: jpingcai@163.com
7
+ License: MIT Licence
8
+ Keywords: experiment,deploy
9
+ Platform: any
10
+ License-File: LICENSE
11
+ Requires-Dist: uv
12
+ Dynamic: author
13
+ Dynamic: author-email
14
+ Dynamic: description
15
+ Dynamic: keywords
16
+ Dynamic: license
17
+ Dynamic: license-file
18
+ Dynamic: platform
19
+ Dynamic: requires-dist
20
+ Dynamic: summary
21
+
22
+ `myexp` is a Python library aimed at providing researchers with an easy-to-use toolkit for managing and executing experiment tasks. Whether it's machine learning experiments, data analysis tasks, or other types of research experiments, `myexp` enables users to quickly set up experiment environments, manage experiment configurations, and automate experiment execution. By integrating with `pip` and virtual environments, `myexp` ensures that each experiment runs in a consistent and controlled environment, avoiding issues related to inconsistent environment setups. The library is designed to be highly modular, supporting user-defined experiment configuration files such as hyperparameters, dataset paths, model configurations, and more. Users can not only manage experiment dependencies flexibly but also schedule experiment tasks, monitor progress, and collect results seamlessly.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ setup.py
4
+ myexp.egg-info/PKG-INFO
5
+ myexp.egg-info/SOURCES.txt
6
+ myexp.egg-info/dependency_links.txt
7
+ myexp.egg-info/requires.txt
8
+ myexp.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ uv
@@ -0,0 +1 @@
1
+
myexp-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
myexp-0.0.0/setup.py ADDED
@@ -0,0 +1,29 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding:utf-8 -*-
3
+
4
+
5
+ #############################################
6
+ # File Name: setup.py
7
+ # Author: Cai Jianping
8
+ # Mail: jpingcai@163.com
9
+ # Created Time: 2025-08-01 22:47:43
10
+ #############################################
11
+
12
+
13
+ from setuptools import setup, find_packages
14
+
15
+ setup(
16
+ name="myexp",
17
+ version="0.0.0",
18
+ keywords=["experiment", "deploy"],
19
+ description="`myexp` is a Python library that simplifies the deployment, management, and execution of research experiments. It allows researchers to easily configure, deploy, and run experiments with flexible environment management and automation.",
20
+ long_description="`myexp` is a Python library aimed at providing researchers with an easy-to-use toolkit for managing and executing experiment tasks. Whether it's machine learning experiments, data analysis tasks, or other types of research experiments, `myexp` enables users to quickly set up experiment environments, manage experiment configurations, and automate experiment execution. By integrating with `pip` and virtual environments, `myexp` ensures that each experiment runs in a consistent and controlled environment, avoiding issues related to inconsistent environment setups. The library is designed to be highly modular, supporting user-defined experiment configuration files such as hyperparameters, dataset paths, model configurations, and more. Users can not only manage experiment dependencies flexibly but also schedule experiment tasks, monitor progress, and collect results seamlessly.",
21
+ license="MIT Licence",
22
+ author="Cai Jianping",
23
+ author_email="jpingcai@163.com",
24
+ packages=find_packages(),
25
+ include_package_data=True,
26
+ platforms="any",
27
+ install_requires=["uv"],
28
+ entry_points={}
29
+ )