lookyloo/client/setup.py

29 lines
956 B
Python
Raw Normal View History

2020-04-21 18:55:59 +02:00
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pylookyloo',
2020-05-05 00:33:11 +02:00
version='0.7',
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=[
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'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',
]
)