-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathsetup.py
31 lines (30 loc) · 868 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
30
31
# -*- coding: utf-8 -*-
import warnings
from setuptools import setup, find_packages
warnings.filterwarnings('ignore')
setup(
name = "CRLFsuite",
version = "2.5.2",
author = "HS Devansh Raghav",
license = "MIT",
keywords = ["CRLFsuite", "Bug Bounty", "pentesting", "security", "CRLF Injection"],
url = "https://github.com/Nefcore/CRLFsuite",
packages=find_packages(),
package_data={'crlfsuite': ['db/*']},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
install_requires=[
'colorama',
'requests',
],
entry_points={
'console_scripts': [
'crlfsuite = crlfsuite.__main__:main'
]
},
)