serve-sc-utils 0.0.1__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,34 @@
1
+ # ignore all env files
2
+ .env
3
+ *.pem
4
+ .env.yaml
5
+ # ignore all log files
6
+ *.log
7
+ # ignore all files in the temp folder
8
+ __pycache__/
9
+ *.pyc
10
+ # ignore documents
11
+ NETSUITE_AUTOMATION_EXPLANATION.md
12
+ # ignore system files
13
+ .DS_Store
14
+ Thumbs.db
15
+ *.ipynb
16
+ .kiro/*
17
+ # ignore test files -- manual test script
18
+ appscript/testCopyToJIT_ASN.js
19
+ # ignore gsheet congfig file
20
+ gsheet_config.json
21
+ gsheets.json
22
+
23
+ keys/
24
+ credentials.json
25
+ .claude/
26
+ .playwright*
27
+ .clasp.json*
28
+ graphify*
29
+ CLAUDE.md*
30
+ AGENTS.md*
31
+
32
+ # Local one-off test harnesses (not maintained)
33
+ sandbox/
34
+ .coverage*
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ravi Guntakala
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.
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: serve-sc-utils
3
+ Version: 0.0.1
4
+ Summary: Reserved placeholder — the real serve-sc-utils ships from a private index. This public package only prevents dependency-confusion / name-squatting attacks.
5
+ Author: Ravi Guntakala
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: dependency-confusion,placeholder,security
9
+ Classifier: Development Status :: 7 - Inactive
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+
16
+ # serve-sc-utils (placeholder)
17
+
18
+ **This is not a usable package.** It is a reserved placeholder published to
19
+ public PyPI to prevent dependency-confusion and name-squatting attacks against
20
+ the real `serve-sc-utils` distribution.
21
+
22
+ The real `serve-sc-utils` is distributed only from a private package index and
23
+ is never published here with functional code. Importing this placeholder raises
24
+ `ImportError` on purpose, so an accidental public install fails fast instead of
25
+ silently shadowing the real package.
26
+
27
+ If `pip install serve-sc-utils` pulled this from PyPI, your index configuration
28
+ is wrong: pin the real version and point pip at the private index.
@@ -0,0 +1,13 @@
1
+ # serve-sc-utils (placeholder)
2
+
3
+ **This is not a usable package.** It is a reserved placeholder published to
4
+ public PyPI to prevent dependency-confusion and name-squatting attacks against
5
+ the real `serve-sc-utils` distribution.
6
+
7
+ The real `serve-sc-utils` is distributed only from a private package index and
8
+ is never published here with functional code. Importing this placeholder raises
9
+ `ImportError` on purpose, so an accidental public install fails fast instead of
10
+ silently shadowing the real package.
11
+
12
+ If `pip install serve-sc-utils` pulled this from PyPI, your index configuration
13
+ is wrong: pin the real version and point pip at the private index.
@@ -0,0 +1,27 @@
1
+ [project]
2
+ name = "serve-sc-utils"
3
+ version = "0.0.1"
4
+ description = "Reserved placeholder — the real serve-sc-utils ships from a private index. This public package only prevents dependency-confusion / name-squatting attacks."
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ license = { text = "MIT" }
8
+ authors = [
9
+ { name = "Ravi Guntakala" }
10
+ ]
11
+ keywords = ["placeholder", "security", "dependency-confusion"]
12
+ classifiers = [
13
+ "Development Status :: 7 - Inactive",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ ]
18
+
19
+ [build-system]
20
+ requires = ["hatchling"]
21
+ build-backend = "hatchling.build"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["src/serve_sc_utils"]
25
+
26
+ [tool.hatch.build.targets.sdist]
27
+ include = ["src/"]
@@ -0,0 +1,17 @@
1
+ """Placeholder for the private ``serve-sc-utils`` distribution.
2
+
3
+ This package on public PyPI is intentionally non-functional. It exists only to
4
+ reserve the name so an attacker cannot publish a malicious ``serve-sc-utils``
5
+ and have it resolved over the real package (which ships from a private index).
6
+ Importing it raises, so an accidental public install is caught immediately
7
+ instead of silently shadowing the real package.
8
+ """
9
+
10
+ _MSG = (
11
+ "serve-sc-utils on public PyPI is a reserved, non-functional placeholder. "
12
+ "The real package is published to a private index. If this was installed "
13
+ "from PyPI, your pip index configuration is wrong — check your --index-url "
14
+ "and your serve-sc-utils version pin."
15
+ )
16
+
17
+ raise ImportError(_MSG)