-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
28 lines (25 loc) · 961 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [x.strip() for x in open("requirements.txt", "r").readlines()]
requirements = [
f"{line.split('#egg=')[-1]} @ {line}" if "#egg=" in line else line for line in requirements]
setup(
name='postmaniac',
version='0.9.3',
packages=find_packages(),
license='GNU General Public License v3 (GPLv3)',
license_files=('LICENSE.md'),
author='boringthegod',
author_email='[email protected]',
description='Postman OSINT tool to extract creds, token, username, email & more from Postman Public Workspaces.',
url='https://github.com/boringthegod/postmaniac',
keywords=["osint", "pentest", "cybersecurity",
"investigation", "lespireshat", "postman"],
entry_points={
'console_scripts': [
'postmaniac=postmaniac.postmaniac:main'
]
},
install_requires=requirements
)