umu-commander 1.4.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.
Potentially problematic release.
This version of umu-commander might be problematic. Click here for more details.
- umu_commander-1.4.0/.gitignore +2 -0
- umu_commander-1.4.0/.idea/.gitignore +3 -0
- umu_commander-1.4.0/.idea/inspectionProfiles/Project_Default.xml +14 -0
- umu_commander-1.4.0/.idea/inspectionProfiles/profiles_settings.xml +7 -0
- umu_commander-1.4.0/.idea/misc.xml +7 -0
- umu_commander-1.4.0/.idea/modules.xml +8 -0
- umu_commander-1.4.0/.idea/umu-commander.iml +12 -0
- umu_commander-1.4.0/.idea/vcs.xml +6 -0
- umu_commander-1.4.0/.idea/workspace.xml +706 -0
- umu_commander-1.4.0/LICENSE.txt +21 -0
- umu_commander-1.4.0/PKG-INFO +43 -0
- umu_commander-1.4.0/README.md +28 -0
- umu_commander-1.4.0/example_config.toml +9 -0
- umu_commander-1.4.0/pyproject.toml +27 -0
- umu_commander-1.4.0/src/umu_commander/__init__.py +0 -0
- umu_commander-1.4.0/src/umu_commander/classes.py +43 -0
- umu_commander-1.4.0/src/umu_commander/configuration.py +22 -0
- umu_commander-1.4.0/src/umu_commander/db.py +66 -0
- umu_commander-1.4.0/src/umu_commander/main.py +55 -0
- umu_commander-1.4.0/src/umu_commander/proton.py +66 -0
- umu_commander-1.4.0/src/umu_commander/tracking.py +97 -0
- umu_commander-1.4.0/src/umu_commander/umu_config.py +147 -0
- umu_commander-1.4.0/src/umu_commander/util.py +94 -0
- umu_commander-1.4.0/tests/__init__.py +29 -0
- umu_commander-1.4.0/tests/test_db.py +40 -0
- umu_commander-1.4.0/tests/test_manual.py +8 -0
- umu_commander-1.4.0/tests/test_proton.py +29 -0
- umu_commander-1.4.0/tests/test_tracking.py +42 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<component name="InspectionProjectProfileManager">
|
|
2
|
+
<profile version="1.0">
|
|
3
|
+
<option name="myName" value="Project Default" />
|
|
4
|
+
<inspection_tool class="PyCompatibilityInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
5
|
+
<option name="ourVersions">
|
|
6
|
+
<value>
|
|
7
|
+
<list size="1">
|
|
8
|
+
<item index="0" class="java.lang.String" itemvalue="3.13" />
|
|
9
|
+
</list>
|
|
10
|
+
</value>
|
|
11
|
+
</option>
|
|
12
|
+
</inspection_tool>
|
|
13
|
+
</profile>
|
|
14
|
+
</component>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="Black">
|
|
4
|
+
<option name="sdkName" value="Python 3.12" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12" project-jdk-type="Python SDK" />
|
|
7
|
+
</project>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ProjectModuleManager">
|
|
4
|
+
<modules>
|
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/umu-commander.iml" filepath="$PROJECT_DIR$/.idea/umu-commander.iml" />
|
|
6
|
+
</modules>
|
|
7
|
+
</component>
|
|
8
|
+
</project>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="PYTHON_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager">
|
|
4
|
+
<content url="file://$MODULE_DIR$">
|
|
5
|
+
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
|
7
|
+
<excludeFolder url="file://$MODULE_DIR$/.venv" />
|
|
8
|
+
</content>
|
|
9
|
+
<orderEntry type="jdk" jdkName="Python 3.12" jdkType="Python SDK" />
|
|
10
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
11
|
+
</component>
|
|
12
|
+
</module>
|