PyMISPWarningLists/setup.py

30 lines
1007 B
Python
Raw Normal View History

2017-10-29 01:40:41 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2021-01-21 15:23:15 +01:00
from setuptools import setup # type: ignore
2017-10-29 01:40:41 +02:00
setup(
2017-10-31 23:12:49 +01:00
name='pymispwarninglists',
2022-01-13 11:27:27 +01:00
version='2.0-dev',
2017-10-29 01:40:41 +02:00
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISPWarningLists',
description='Python API for the MISP warning lists.',
packages=['pymispwarninglists'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
],
tests_requires=['nose'],
test_suite='nose.collector',
package_data={'pymispwarninglists': ['data/misp-warninglists/schema.json',
2020-01-31 23:29:18 +01:00
'data/misp-warninglists/lists/*/*.json']}
2017-10-29 01:40:41 +02:00
)