idegym-api 999.9.9__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,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: idegym-api
3
+ Version: 999.9.9
4
+ Description-Content-Type: text/markdown
5
+
6
+ ## Description
7
+
8
+ This public copy of the package is a stub published on pypi.org designed to mitigate risks from Dependency Confusion.
9
+
10
+ You will only see this public package if your app is not properly configured to find the local package repository.
11
+ To get more information about Dependency Confusion read related information in the related [YouTrack article](https://jb.gg/dependency-confusion).
12
+
13
+ ## Contact us
14
+ - If you're developer of an original library and want to publish your own original package — contact us: `security-tooling@jetbrains.com`
15
+ - If you're an employee of JetBrains company, and you have questions — contact us in Slack: `#security`
@@ -0,0 +1,10 @@
1
+ ## Description
2
+
3
+ This public copy of the package is a stub published on pypi.org designed to mitigate risks from Dependency Confusion.
4
+
5
+ You will only see this public package if your app is not properly configured to find the local package repository.
6
+ To get more information about Dependency Confusion read related information in the related [YouTrack article](https://jb.gg/dependency-confusion).
7
+
8
+ ## Contact us
9
+ - If you're developer of an original library and want to publish your own original package — contact us: `security-tooling@jetbrains.com`
10
+ - If you're an employee of JetBrains company, and you have questions — contact us in Slack: `#security`
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: idegym-api
3
+ Version: 999.9.9
4
+ Description-Content-Type: text/markdown
5
+
6
+ ## Description
7
+
8
+ This public copy of the package is a stub published on pypi.org designed to mitigate risks from Dependency Confusion.
9
+
10
+ You will only see this public package if your app is not properly configured to find the local package repository.
11
+ To get more information about Dependency Confusion read related information in the related [YouTrack article](https://jb.gg/dependency-confusion).
12
+
13
+ ## Contact us
14
+ - If you're developer of an original library and want to publish your own original package — contact us: `security-tooling@jetbrains.com`
15
+ - If you're an employee of JetBrains company, and you have questions — contact us in Slack: `#security`
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ idegym_api.egg-info/PKG-INFO
5
+ idegym_api.egg-info/SOURCES.txt
6
+ idegym_api.egg-info/dependency_links.txt
7
+ idegym_api.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ templates
@@ -0,0 +1,10 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "idegym-api"
7
+ version = "999.9.9"
8
+ readme = "README.md"
9
+
10
+ dependencies = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ import sys
2
+ from distutils.core import setup
3
+
4
+ if not any(cmd in sys.argv for cmd in ["sdist", "egg_info"]):
5
+ raise Exception(
6
+ """
7
+ Installation terminated!
8
+ This is stub package to mitigate risks of Dependency Confusion attacks.
9
+ As you install it - your configuration didn't configure properly.
10
+ This is package not intended to be installed and highlight problems in your setup.
11
+
12
+ Read more: https://jb.gg/dependency-confusion
13
+ """
14
+ )
15
+
16
+ setup()