Skip to content

Commit 857a0e9

Browse files
authored
Add files via upload
1 parent 474e152 commit 857a0e9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# -*- coding: utf-8 -*-
2+
import warnings
3+
from setuptools import setup, find_packages
4+
warnings.filterwarnings('ignore')
5+
6+
setup(
7+
name = "CRLFsuite",
8+
version = "2.5.2",
9+
author = "HS Devansh Raghav",
10+
license = "MIT",
11+
keywords = ["CRLFsuite", "Bug Bounty", "pentesting", "security", "CRLF Injection"],
12+
url = "https://github.com/Nefcore/CRLFsuite",
13+
packages=find_packages(),
14+
package_data={'crlfsuite': ['db/*']},
15+
classifiers=[
16+
"Intended Audience :: Developers",
17+
"Intended Audience :: Information Technology",
18+
"Topic :: Security",
19+
"License :: OSI Approved :: MIT License",
20+
"Programming Language :: Python",
21+
],
22+
install_requires=[
23+
'colorama',
24+
'requests',
25+
],
26+
entry_points={
27+
'console_scripts': [
28+
'crlfsuite = crlfsuite.__main__:main'
29+
]
30+
},
31+
)

0 commit comments

Comments
 (0)