Skip to content

Commit

Permalink
retry packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
frjcomp committed Mar 5, 2024
1 parent 35096ee commit 2191aad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion Manifest.in

This file was deleted.

Empty file added conkeyscan/__init__.py
Empty file.
File renamed without changes.
2 changes: 1 addition & 1 deletion conkeyscan.py → conkeyscan/conkeyscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def main(
url: "u",
username: "usr",
password: "pwd",
dict_path: "d" = pkg_resources.resource_filename("conkeyscan", "static/dict.txt"),
dict_path: "d" = pkg_resources.resource_filename("conkeyscan", "config/dict.txt"),
disable_ssl_checks: "k" = True,
rate_limit: "r" = 100,
proxy: "p" = "",
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

setup(
name="conkeyscan",
author="Jan Friedli",
description="A Pentesters Confluence Keyword Scanner",
version="{{VERSION_PLACEHOLDER}}",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand All @@ -16,7 +18,10 @@
"readchar",
"PySocks>=1",
],
entry_points={"console_scripts": ["conkeyscan = conkeyscan:entry_point"]},
packages=find_packages() + ["config"],
entry_points={
"console_scripts": ["conkeyscan = conkeyscan.conkeyscan:entry_point"]
},
packages=find_packages(),
include_package_data=True,
package_data={"conkeyscan.config": ["*.txt"]},
)

0 comments on commit 2191aad

Please sign in to comment.