-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
47 lines (42 loc) · 1.04 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requires = [
'beautifulsoup4>=4.8.1',
'dnspython>=1.15.0',
'ipaddress>=1.0.19',
'netaddr>=0.7.19',
'PyGithub>=1.44',
'PyJWT>=1.7.1',
'requests>=2.20.0',
'six>=1.11.0',
'termcolor>=1.1.0',
'urllib3>=1.22',
]
setup(
name="Saker",
version="1.0.9",
keywords=("Web Security", "Fuzz"),
description="Tool For Fuzz Web Applications",
long_description=long_description,
long_description_content_type="text/markdown",
license="GPLv3 Licence",
url="https://github.com/LyleMi/Saker",
author="Lyle",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
install_requires=requires,
platforms="any",
package_data={
'saker': [
'data/*.*',
'data/sample/*',
'data/domains/*',
]
},
scripts=[],
)