-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 loc) · 1.33 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
import os
import setuptools
import irnettools
cur_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cur_dir, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(cur_dir, 'requirements.txt')) as f:
requires = f.read().splitlines()
setuptools.setup(
name = 'irnettools',
version = irnettools.version,
author = 'Thomas Hungenberg',
author_email = "th@cert-bund.de",
description = 'A set of tools useful for processing\
network data like IP addresses, URLs or email credentials\
while handling security incidents.',
long_description = long_description,
url = "https://github.com/cert-bund/irnettools",
packages = ['irnettools'],
install_requires = requires,
python_requires = '>=3.5',
scripts = ['bin/add_abuse_contact',
'bin/add_asgeo',
'bin/add_email_mx',
'bin/add_host_ip',
'bin/csv_recol',
'bin/hostinfo',
'bin/process_urls',
'bin/process_email_credentials',
'bin/update-irnettools-databases',
],
keywords = 'incident response network tools cert',
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Security'
],
)