oppertune-core 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,5 @@
1
+ PROPRIETARY LICENSE
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ This package is a security placeholder reserved by MSRC. Contact depscan@microsoft.com for ownership transfer inquiries.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: oppertune-core
3
+ Version: 0.0.1
4
+ Summary: Security holding package reserved by MSRC - contact depscan@microsoft.com for ownership transfer
5
+ Home-page:
6
+ Author: MSRC Dependency Confusion Scanner
7
+ Author-email: MSRC Dependency Confusion Scanner <depscan@microsoft.com>
8
+ License: Proprietary
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: Other/Proprietary License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.6
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: author
17
+ Dynamic: license-file
18
+ Dynamic: requires-python
19
+
20
+ # oppertune-core
21
+
22
+ ## Security Holding Package
23
+
24
+ This package name has been reserved by MSRC to prevent dependency confusion attacks.
25
+
26
+ ### Why does this package exist?
27
+
28
+ This placeholder package was published to protect against a type of supply chain attack called "dependency confusion" where an attacker publishes a malicious package with the same name as an internal/private package.
29
+
30
+ ### Are you the legitimate owner of this package name?
31
+
32
+ If you are a Microsoft employee or vendor and need this package name for legitimate use, we can transfer ownership to you.
33
+
34
+ **Contact:** [depscan@microsoft.com](mailto:depscan@microsoft.com)
35
+
36
+ Please include:
37
+ - The package name you need
38
+ - Your PyPI username
39
+ - The GitHub repository or project that will use this package
40
+ - Brief description of the package's purpose
@@ -0,0 +1,21 @@
1
+ # oppertune-core
2
+
3
+ ## Security Holding Package
4
+
5
+ This package name has been reserved by MSRC to prevent dependency confusion attacks.
6
+
7
+ ### Why does this package exist?
8
+
9
+ This placeholder package was published to protect against a type of supply chain attack called "dependency confusion" where an attacker publishes a malicious package with the same name as an internal/private package.
10
+
11
+ ### Are you the legitimate owner of this package name?
12
+
13
+ If you are a Microsoft employee or vendor and need this package name for legitimate use, we can transfer ownership to you.
14
+
15
+ **Contact:** [depscan@microsoft.com](mailto:depscan@microsoft.com)
16
+
17
+ Please include:
18
+ - The package name you need
19
+ - Your PyPI username
20
+ - The GitHub repository or project that will use this package
21
+ - Brief description of the package's purpose
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: oppertune-core
3
+ Version: 0.0.1
4
+ Summary: Security holding package reserved by MSRC - contact depscan@microsoft.com for ownership transfer
5
+ Home-page:
6
+ Author: MSRC Dependency Confusion Scanner
7
+ Author-email: MSRC Dependency Confusion Scanner <depscan@microsoft.com>
8
+ License: Proprietary
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: Other/Proprietary License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.6
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Dynamic: author
17
+ Dynamic: license-file
18
+ Dynamic: requires-python
19
+
20
+ # oppertune-core
21
+
22
+ ## Security Holding Package
23
+
24
+ This package name has been reserved by MSRC to prevent dependency confusion attacks.
25
+
26
+ ### Why does this package exist?
27
+
28
+ This placeholder package was published to protect against a type of supply chain attack called "dependency confusion" where an attacker publishes a malicious package with the same name as an internal/private package.
29
+
30
+ ### Are you the legitimate owner of this package name?
31
+
32
+ If you are a Microsoft employee or vendor and need this package name for legitimate use, we can transfer ownership to you.
33
+
34
+ **Contact:** [depscan@microsoft.com](mailto:depscan@microsoft.com)
35
+
36
+ Please include:
37
+ - The package name you need
38
+ - Your PyPI username
39
+ - The GitHub repository or project that will use this package
40
+ - Brief description of the package's purpose
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ oppertune_core.py
4
+ pyproject.toml
5
+ setup.py
6
+ oppertune_core.egg-info/PKG-INFO
7
+ oppertune_core.egg-info/SOURCES.txt
8
+ oppertune_core.egg-info/dependency_links.txt
9
+ oppertune_core.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ oppertune_core
@@ -0,0 +1,20 @@
1
+ """
2
+ Security Holding Package
3
+
4
+ This package name has been reserved by MSRC to prevent dependency confusion attacks.
5
+ If you believe you have a legitimate need for this package name,
6
+ please contact depscan@microsoft.com
7
+ """
8
+
9
+ import warnings
10
+
11
+ warnings.warn(
12
+ "WARNING: This is a security holding package reserved by MSRC. "
13
+ "If you're seeing this message, your build configuration may be incorrect. "
14
+ "Contact depscan@microsoft.com for assistance.",
15
+ RuntimeWarning,
16
+ stacklevel=2
17
+ )
18
+
19
+ __version__ = "0.0.1"
20
+ __all__ = []
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "oppertune-core"
7
+ version = "0.0.1"
8
+ description = "Security holding package reserved by MSRC - contact depscan@microsoft.com for ownership transfer"
9
+ readme = "README.md"
10
+ license = {text = "Proprietary"}
11
+ authors = [
12
+ {name = "MSRC Dependency Confusion Scanner", email = "depscan@microsoft.com"}
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: Other/Proprietary License",
18
+ "Programming Language :: Python :: 3",
19
+ ]
20
+ requires-python = ">=3.6"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,21 @@
1
+ """Security holding package - this package name is reserved."""
2
+ from setuptools import setup
3
+
4
+ setup(
5
+ name="oppertune-core",
6
+ version="0.0.1",
7
+ description="Security holding package reserved by MSRC - contact depscan@microsoft.com for ownership transfer",
8
+ long_description=open("README.md").read(),
9
+ long_description_content_type="text/markdown",
10
+ author="MSRC Dependency Confusion Scanner",
11
+ author_email="depscan@microsoft.com",
12
+ url="",
13
+ py_modules=["oppertune_core"],
14
+ classifiers=[
15
+ "Development Status :: 1 - Planning",
16
+ "Intended Audience :: Developers",
17
+ "License :: Other/Proprietary License",
18
+ "Programming Language :: Python :: 3",
19
+ ],
20
+ python_requires=">=3.6",
21
+ )