-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 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
from distutils.core import setup
setup(
name = "DShield",
packages = ['DShield'],
version = '0.1',
license= 'gpl-3.0',
description = 'Library to interact with DShield and the SANS Internet Storm Center. Also see isc.sans.edu/api',
author = 'Johannes Ullrich',
author_email = '[email protected]',
url = 'https://github.com/jullrich/DShieldPy',
download_url = 'https://github.com/jullrich/DShieldPy/dist/DShield-0.1.tar.gz',
keywords = ['DShield','Security','Firewall','Logs','Intrusion Detection'],
install_requires=[
'base64',
'configparser',
'hashlib',
'hmac',
'json',
'os',
're',
'requests',
'socket',
'struct',
'sys',
'syslog'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intendend Audience :: Developers',
'Topic :: Security',
'License :: OSI Approved :: GPLv3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
)