mirror of https://github.com/MISP/PyIntel471
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
820 B
27 lines
820 B
#!/usr/bin/env python |
|
# -*- coding: utf-8 -*- |
|
from setuptools import setup |
|
|
|
|
|
setup( |
|
name='pyintel471', |
|
version='0.1', |
|
author='Raphaël Vinot', |
|
author_email='raphael.vinot@circl.lu', |
|
maintainer='Raphaël Vinot', |
|
url='https://github.com/MISP/PyIntel471', |
|
description='Python client for Intel471', |
|
packages=['pyintel471'], |
|
classifiers=[ |
|
'License :: OSI Approved :: BSD License', |
|
'Development Status :: 3 - Alpha', |
|
'Environment :: Console', |
|
'Operating System :: POSIX :: Linux', |
|
'Intended Audience :: Science/Research', |
|
'Intended Audience :: Telecommunications Industry', |
|
'Intended Audience :: Information Technology', |
|
'Programming Language :: Python :: 3', |
|
'Topic :: Security', |
|
'Topic :: Internet', |
|
] |
|
)
|
|
|