-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (28 loc) · 849 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
setup(
name="conkeyscan",
author="Jan Friedli",
url="https://github.com/CompassSecurity/conkeyscan",
description="A Pentesters Confluence Keyword Scanner",
version="{{VERSION_PLACEHOLDER}}",
license="mit",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
py_modules=["conkeyscan"],
install_requires=[
"loguru",
"atlassian-python-api>=3",
"beautifulsoup4>=4",
"requests-ratelimiter",
"clize>=5",
"random-user-agent>=1",
"readchar",
"PySocks>=1",
],
entry_points={
"console_scripts": ["conkeyscan = conkeyscan.conkeyscan:entry_point"]
},
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
)