PyMISP/setup.py

26 lines
740 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',
version='1.10',
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 :: 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',
],
2014-04-16 15:14:58 +02:00
install_requires=['requests'],
)