misp-modules/setup.py

31 lines
1000 B
Python
Raw Permalink Normal View History

2016-09-15 15:11:04 +02:00
#!/usr/bin/env python3
2016-06-18 04:04:41 +02:00
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
2016-06-18 04:04:41 +02:00
setup(
name='misp-modules',
version='1.0',
author='Alexandre Dulaunoy',
author_email='alexandre.dulaunoy@circl.lu',
maintainer='Alexandre Dulaunoy',
url='https://github.com/MISP/misp-modules',
description='MISP modules are autonomous modules that can be used for expansion and other services in MISP',
packages=find_packages(),
2016-09-15 15:11:04 +02:00
entry_points={'console_scripts': ['misp-modules = misp_modules:main']},
scripts=['tools/update_misp_modules.sh'],
2016-06-18 04:04:41 +02:00
test_suite="tests",
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Security',
],
install_requires=[
'tornado',
'psutil',
'redis>=3'
2016-11-21 11:59:30 +01:00
],
2016-06-18 04:04:41 +02:00
)