-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
25 lines (24 loc) · 1015 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
from setuptools import setup, find_packages
setup(
name="puncia",
version="0.27",
author="A.R.P. Syndicate",
author_email="[email protected]",
keywords="cyber intelligence llm ai chat subdomains subdomain exploits exploit sbom cyclonedx arpsyndicate panthera uncia puncia snow leopard",
url="https://github.com/ARPSyndicate/puncia",
project_urls={
"A.R.P. Syndicate": "https://www.arpsyndicate.io",
"Subdomain Center": "https://subdomain.center",
"Exploit Observer": "https://exploit.observer",
"Osprey Vision": "https://osprey.vision",
},
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
description="The Panthera(P.)uncia of Cybersecurity - Official CLI utility for Osprey Vision, Subdomain Center & Exploit Observer",
packages=find_packages(),
install_requires=[
"requests",
],
entry_points={"console_scripts": ["puncia=puncia.__main__:main"]},
)