2014-04-16 15:14:58 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pymisp',
|
2015-08-10 11:58:20 +02:00
|
|
|
version='1.5',
|
2014-04-16 15:14:58 +02:00
|
|
|
author='Raphaël Vinot',
|
|
|
|
author_email='raphael.vinot@circl.lu',
|
|
|
|
maintainer='Raphaël Vinot',
|
|
|
|
url='https://github.com/MISP/PyMISP',
|
|
|
|
description='Python API for MISP.',
|
|
|
|
packages=['pymisp'],
|
|
|
|
classifiers=[
|
2015-08-19 09:44:43 +02:00
|
|
|
'License :: OSI Approved :: BSD License',
|
2014-04-16 15:14:58 +02:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
2015-08-05 17:21:08 +02:00
|
|
|
],
|
2014-04-16 15:14:58 +02:00
|
|
|
install_requires=['requests'],
|
2015-08-05 17:21:08 +02:00
|
|
|
)
|