saf-sdk 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.
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ChangeListManager">
4
+ <list default="true" id="47bd00a0-8cd0-4862-8deb-edf82112b801" name="Changes" comment="" />
5
+ <option name="SHOW_DIALOG" value="false" />
6
+ <option name="HIGHLIGHT_CONFLICTS" value="true" />
7
+ <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
8
+ <option name="LAST_RESOLUTION" value="IGNORE" />
9
+ </component>
10
+ <component name="Git.Settings">
11
+ <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
12
+ </component>
13
+ <component name="ProjectColorInfo"><![CDATA[{
14
+ "associatedIndex": 1
15
+ }]]></component>
16
+ <component name="ProjectId" id="2zpcTVZNnSQf061wVO37pEhmA5K" />
17
+ <component name="ProjectViewState">
18
+ <option name="hideEmptyMiddlePackages" value="true" />
19
+ <option name="showLibraryContents" value="true" />
20
+ </component>
21
+ <component name="PropertiesComponent"><![CDATA[{
22
+ "keyToString": {
23
+ "ModuleVcsDetector.initialDetectionPerformed": "true",
24
+ "RunOnceActivity.ShowReadmeOnStart": "true",
25
+ "RunOnceActivity.git.unshallow": "true",
26
+ "git-widget-placeholder": "master",
27
+ "last_opened_file_path": "/Users/qlong/indeed/iwf/saf-sdk",
28
+ "nodejs_package_manager_path": "npm",
29
+ "vue.rearranger.settings.migration": "true"
30
+ }
31
+ }]]></component>
32
+ <component name="SharedIndexes">
33
+ <attachedChunks>
34
+ <set>
35
+ <option value="bundled-js-predefined-d6986cc7102b-09060db00ec0-JavaScript-PY-251.26927.74" />
36
+ <option value="bundled-python-sdk-657d8234b839-64d779b69b7a-com.jetbrains.pycharm.pro.sharedIndexes.bundled-PY-251.26927.74" />
37
+ </set>
38
+ </attachedChunks>
39
+ </component>
40
+ <component name="TaskManager">
41
+ <task active="true" id="Default" summary="Default task">
42
+ <changelist id="47bd00a0-8cd0-4862-8deb-edf82112b801" name="Changes" comment="" />
43
+ <created>1752431462083</created>
44
+ <option name="number" value="Default" />
45
+ <option name="presentableId" value="Default" />
46
+ <updated>1752431462083</updated>
47
+ <workItem from="1752431463097" duration="155000" />
48
+ </task>
49
+ <servers />
50
+ </component>
51
+ <component name="TypeScriptGeneratedFilesManager">
52
+ <option name="version" value="3" />
53
+ </component>
54
+ </project>
@@ -0,0 +1 @@
1
+ 3.12
saf_sdk-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: saf-sdk
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.12
File without changes
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "saf-sdk"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ dependencies = []
8
+
9
+ [build-system]
10
+ requires = ["hatchling"]
11
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from saf-sdk!"
File without changes