-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 989 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
32
33
34
35
import os
from setuptools import setup
setup(
name='evilurl',
version='2.0.8',
packages=['src'],
package_data={'src': ['unicode_combinations.json']},
setup_requires=['wheel'],
entry_points={
'console_scripts': [
'evilurl=src.evilurl:main',
],
},
install_requires=[
'pandas',
'tabulate',
'tldextract',
],
author='Glauber Magal',
author_email='[email protected]',
description='A tool for analyzing domains for the risk of IDN homograph attacks',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/glaubermagal/evilurl',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
data_files=[
(os.path.join(os.path.expanduser('~'), '.local', 'share', 'man', 'man1'), ['src/evilurl.1']),
],
)