mirror of https://github.com/MISP/PyTaxonomies
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='pytaxonomies',
|
|
version='0.5',
|
|
author='Raphaël Vinot',
|
|
author_email='raphael.vinot@circl.lu',
|
|
maintainer='Raphaël Vinot',
|
|
url='https://github.com/MISP/PyTaxonomies',
|
|
description='Python API for the taxonomies.',
|
|
packages=['pytaxonomies'],
|
|
scripts=['bin/pytaxonomies'],
|
|
classifiers=[
|
|
'License :: OSI Approved :: BSD License',
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Science/Research',
|
|
'Intended Audience :: Telecommunications Industry',
|
|
'Programming Language :: Python',
|
|
'Topic :: Security',
|
|
'Topic :: Internet',
|
|
],
|
|
tests_requires=['nose'],
|
|
test_suite='nose.collector',
|
|
install_requires=['requests'],
|
|
package_data={'pytaxonomies': ['data/misp-taxonomies/schema.json', 'data/misp-taxonomies/MANIFEST.json',
|
|
'data/misp-taxonomies/*/machinetag.json']}
|
|
)
|