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.',
|
2016-11-04 14:32:29 +01:00
|
|
|
packages=['pymisp', 'pymisp.tools'],
|
2014-04-16 15:14:58 +02:00
|
|
|
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',
|
2016-08-02 15:17:42 +02:00
|
|
|
'Operating System :: POSIX :: Linux',
|
2014-04-16 15:14:58 +02:00
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
2016-08-02 15:17:42 +02:00
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
2014-04-16 15:14:58 +02:00
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
2015-08-05 17:21:08 +02:00
|
|
|
],
|
2015-09-22 15:25:47 +02:00
|
|
|
test_suite="tests",
|
2016-09-27 19:47:22 +02:00
|
|
|
install_requires=['requests', 'python-dateutil', 'jsonschema'],
|
|
|
|
include_package_data=True,
|
|
|
|
package_data={'data': ['schema.json', 'schema-lax.json', 'describeTypes.json']},
|
2015-08-05 17:21:08 +02:00
|
|
|
)
|