forked from certat/intelmq-webinput-csv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.29 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
# -*- coding: utf-8 -*-
"""
SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <[email protected]>, 2021-2022 Bundesamt für Sicherheit in der Informationstechnik
SPDX-License-Identifier: AGPL-3.0-or-later
Software engineering by Intevation GmbH <https://intevation.de>
Authors:
Sascha Wilde <[email protected]>
"""
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='Sebastian Wagner',
maintainer_email='[email protected]',
packages=[
'intelmq_webinput_csv',
'webinput_session',
],
install_requires=[
# 'intelmq' is not listed here as this causes a re-installation of intelmq on development installations
# https://github.com/pypa/pip/issues/10805
'hug',
'psycopg2',
],
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'],
)