PyMISP/setup.py

29 lines
791 B
Python
Raw Normal View History

2014-04-16 15:14:58 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
2015-09-18 12:03:56 +02:00
import pymisp
2014-04-16 15:14:58 +02:00
setup(
name='pymisp',
2015-09-18 12:03:56 +02:00
version=pymisp.__version__,
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',
],
2015-09-22 15:25:47 +02:00
test_suite="tests",
2014-04-16 15:14:58 +02:00
install_requires=['requests'],
)