This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
73 lines (69 loc) · 2.52 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
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2017-2018 nic.at GmbH <[email protected]>
# SPDX-License-Identifier: AGPL-3.0
import os
from setuptools import find_packages, setup
DATA = [
('/opt/intelmq/etc/examples',
['intelmq_webinput_csv/etc/webinput_csv.conf',
],
),
]
exec(open(os.path.join(os.path.dirname(__file__),
'intelmq_webinput_csv/version.py')).read()) # defines __version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as handle:
README = handle.read().replace('<docs/',
'<https://github.com/certat/intelmq-webinput-csv/blob/master/docs/')
setup(
name='intelmq_webinput_csv',
version=__version__,
maintainer='Sebastian Wagner',
maintainer_email='[email protected]',
install_requires=[
'Flask',
'flask-socketio',
'intelmq>=3.0.0',
],
test_suite='intelmq_webinput_csv.tests',
packages=find_packages(),
package_data={'intelmq_webinput_csv': [
'etc/webinput.conf',
'static/',
]
},
include_package_data=True,
url='https://github.com/certat/intelmq_webinput_csv/',
license='AGPLv3 and MIT and OFL-1.1',
description='This is a Flask-based web interface allowing the user to '
'insert data into intelmq\'s pipelines interactively with '
'preview from the parser.',
long_description=README,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU Affero General Public License v3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
],
keywords='incident handling cert csirt',
data_files=DATA,
entry_points={
'console_scripts': [
'intelmq_webinput_csv=intelmq_webinput_csv.bin.backend:main',
],
},
)