PyTaxonomies/setup.py

32 lines
1.0 KiB
Python
Raw Permalink Normal View History

2016-07-25 18:48:08 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2020-02-17 19:15:39 +01:00
from setuptools import setup # type: ignore
2016-07-25 18:48:08 +02:00
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'],
2017-07-21 10:07:55 +02:00
package_data={'pytaxonomies': ['data/misp-taxonomies/schema.json', 'data/misp-taxonomies/MANIFEST.json',
'data/misp-taxonomies/*/machinetag.json']}
2016-07-25 18:48:08 +02:00
)