exploitgraph 1.0.3__tar.gz → 1.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exploitgraph
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Automated attack path discovery and exploitation framework for cloud-native applications
5
5
  Author-email: Prajwal Pawar <prajwal@exploitgraph.io>
6
6
  License: MIT
@@ -0,0 +1,3 @@
1
+ def main():
2
+ from exploitgraph import main as real_main
3
+ real_main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: exploitgraph
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Automated attack path discovery and exploitation framework for cloud-native applications
5
5
  Author-email: Prajwal Pawar <prajwal@exploitgraph.io>
6
6
  License: MIT
@@ -1,6 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
+ exploitgraph/cli.py
4
5
  exploitgraph.egg-info/PKG-INFO
5
6
  exploitgraph.egg-info/SOURCES.txt
6
7
  exploitgraph.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ exploitgraph = exploitgraph.cli:main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "exploitgraph"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Automated attack path discovery and exploitation framework for cloud-native applications"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -42,7 +42,7 @@ dev = ["pytest>=7.0", "black>=23.0", "flake8>=6.0", "mypy>=1.0"]
42
42
  all = ["exploitgraph[aws,dev]"]
43
43
 
44
44
  [project.scripts]
45
- exploitgraph = "exploitgraph:main"
45
+ exploitgraph = "exploitgraph.cli:main"
46
46
 
47
47
  [project.urls]
48
48
  Homepage = "https://github.com/prajwalpawar/ExploitGraph"
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- exploitgraph = exploitgraph:main
File without changes
File without changes
File without changes