-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
57 lines (51 loc) · 1.22 KB
/
setup.cfg
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
48
49
50
51
52
53
54
55
56
57
[metadata]
name = FishingForPhish
author = Xander Kutulas
author_email = Xander.Kutulas@gmail.com
url = https://github.com/xanmankey/FishingForPhish.git
version = 0.3.2
description = FishingForPhish is a phishing detection framework focused on the analysis of image and page based features.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = phishing-detection, machine learning, data analysis
license = BSD 3-Clause License
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
[options]
package_dir =
= src
packages = find:
# only 3.10 has been tested (although 3.10 wouldn't allow the build to execute)
# although vermin (https://github.com/netromdk/vermin)
# returns a 3.5 minimum version
# TODO: set up continuous integration
python_requires = >= 3.8
install_requires =
beautifulsoup4
cssutils
filetype
ImageHash
IPy
numpy
Pillow
pyshorteners
python_weka_wrapper3
requests
selenium
tldextract
urllib3
validators
weka
[options.packages.find]
where = src
[options.extras_require]
# tests = TODO
dev = flake8==4.0.1
[options.package_data]
* = README.md
[vermin]
verbose = 1
processes = 4
[flake8]
max-line-length = 100