forked from Intevation/intelmq-webinput-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.06 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2017-2018 nic.at GmbH <[email protected]>
# Copyright (c) 2021 Bundesamt für Sicherheit in der Informationstechnik
# Authors:
# Sascha Wilde <[email protected]>
# SPDX-License-Identifier: AGPL-3.0
import os
from setuptools import setup
exec(open(os.path.join(os.path.dirname(__file__),
'intelmq_webinput_csv/version.py')).read()) # defines __version__
setup(
name='intelmq_webinput_csv',
version=__version__,
author='Intevation GmbH',
author_email='[email protected]',
maintainer='Raimund Renkert',
maintainer_email='[email protected]',
packages=[
'intelmq_webinput_csv',
'webinput_session',
],
install_requires=[
'hug',
],
license='AGPLv3',
description='This is a simple web interface allowing the user to '
'insert data into intelmq\'s pipelines interactively with '
'preview from the parser.',
keywords='incident handling cert csirt',
scripts = ['webinput-adduser']
)