2020-04-21 18:55:59 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='pylookyloo',
|
2020-06-10 18:41:03 +02:00
|
|
|
version='1.0-dev',
|
2020-04-21 18:55:59 +02:00
|
|
|
author='Raphaël Vinot',
|
|
|
|
author_email='raphael.vinot@circl.lu',
|
|
|
|
maintainer='Raphaël Vinot',
|
2020-06-08 17:44:08 +02:00
|
|
|
url='https://github.com/Lookyloo/lookyloo/client',
|
2020-04-21 18:55:59 +02:00
|
|
|
description='Python client for Lookyloo',
|
|
|
|
packages=['pylookyloo'],
|
2020-05-08 17:24:15 +02:00
|
|
|
entry_points={"console_scripts": ["lookyloo = pylookyloo:main"]},
|
2020-04-21 18:55:59 +02:00
|
|
|
install_requires=['requests'],
|
|
|
|
classifiers=[
|
2020-06-10 18:41:03 +02:00
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
2020-04-21 18:55:59 +02:00
|
|
|
'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',
|
|
|
|
]
|
|
|
|
)
|