-
Notifications
You must be signed in to change notification settings - Fork 166
/
Copy pathsetup.py
27 lines (25 loc) · 1.26 KB
/
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
#!/usr/bin/env python
import sys
from setuptools import setup
VERSION = '1.0.0'
setup(
name='sublert',
version=VERSION,
license='MIT',
author='Yassine Aboukir',
author_email='[email protected]',
url='http://github.com/yassineaboukir/sublert',
download_url='http://github.com/yassineaboukir/sublert.git',
description='Sublert is a security and reconnaissance tool which leverages certificate transparency for the sole purpose of monitoring new subdomains deployed by specific organizations and issued TLS/SSL certificate. The tool will be scheduled to run periodically at fixed times, dates, or intervals (Ideally each day) and newly identified subdomains will be sent to Slack workspace with a notification push. Furthermore, the tool will determine resolving subdomains.',
install_requires=['psycopg2-binary',
'argparse',
'requests',
'dnspython',
'tld',
'termcolor',
],
project_urls={
'Documentation': 'http://github.com/yassineaboukir/sublert',
'Roadmap': 'https://github.com/yassineaboukir/sublert/projects',
'Issue Tracker': 'https://github.com/yassineaboukir/sublert/issues'}
)