-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
62 lines (55 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
import os
import sys
try:
import subprocess
has_subprocess = True
except:
has_subprocess = False
try:
from ez_setup import use_setuptools
use_setuptools()
except ImportError:
pass
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from distutils.cmd import Command
long_description = """A library for consuming messages from hpfeeds honeypots and normalizing them"""
setup(
name='hpfeeds-logger',
version='0.0.7.7',
maintainer='Pwnlandia',
license='License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
description='Python library to normalize and log hpfeeds honeypot messages',
long_description=long_description,
url='https://github.com/Pwnlandia/hpfeeds-logger',
keywords='hpfeeds logger normalizer formatter honeypots',
packages=['hpfeedslogger',
'hpfeedslogger.formatters',
'hpfeedslogger'
],
scripts=['bin/hpfeeds-logger'],
install_requires=[
'hpfeeds-threatstream==1.1',
'geoip2==2.9.0'
],
tests_require=[],
py_modules=['ez_setup'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)