-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (30 loc) · 1.09 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
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='dirlister',
version='1.0.0',
python_requires='>=2.7',
install_requires=['argparse; python_version==\'2.7\''],
description='Generates wordlists to use for enumeration and brute-forcing files and directories',
url='https://github.com/jimmy-ly00/dirlister',
author='Jimmy Ly',
author_email='jimmy-ly00@proton.me',
license='GPL-2.0',
packages=find_packages()+['.'],
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
entry_points={
'console_scripts': [
'dirlister = dirlister:interactive',
],
},
)