PyMISP/setup.py

26 lines
765 B
Python
Raw Normal View History

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=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet',
],
2014-04-16 15:14:58 +02:00
install_requires=['requests'],
)