-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (42 loc) · 1.39 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
48
49
50
51
#!/usr/bin/env python3
from setuptools import setup, find_packages
from PhishingTracker import NAME
from PhishingTracker import VERSION
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
description='Utility to manage sets of phishing links making it easier to track their removal progress over time.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License',
],
keywords=['phish', 'phishing', 'url', 'cyber-crime'],
author='Nicholas de Jong',
author_email='contact@nicholasdejong.com',
url='https://github.com/ndejong/phishing-tracker',
license='BSD 2-Clause',
packages=find_packages(),
zip_safe=False,
scripts=['bin/phishing-tracker'],
install_requires=[
'pydig',
'pyyaml',
'requests',
'eventlet',
'dateparser',
'tldextract',
'python-whois',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)