2017-07-23 19:56:51 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
2020-01-06 15:32:38 +01:00
|
|
|
from setuptools import setup # type: ignore
|
2017-07-23 19:56:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='lookyloo',
|
2021-08-30 15:17:03 +02:00
|
|
|
version='1.9-dev',
|
2017-07-23 19:56:51 +02:00
|
|
|
author='Raphaël Vinot',
|
|
|
|
author_email='raphael.vinot@circl.lu',
|
|
|
|
maintainer='Raphaël Vinot',
|
2020-06-08 17:44:37 +02:00
|
|
|
url='https://github.com/Lookyloo/lookyloo',
|
2017-07-23 19:56:51 +02:00
|
|
|
description='Web interface to track the trackers.',
|
|
|
|
packages=['lookyloo'],
|
2019-04-05 14:01:36 +02:00
|
|
|
scripts=['bin/start_website.py', 'bin/start.py', 'bin/run_backend.py', 'bin/async_scrape.py',
|
2020-09-28 13:32:19 +02:00
|
|
|
'bin/shutdown.py', 'bin/stop.py', 'bin/rebuild_caches.py', 'bin/update.py'],
|
2017-07-23 19:56:51 +02:00
|
|
|
include_package_data=True,
|
|
|
|
classifiers=[
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'Intended Audience :: Telecommunications Industry',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Security',
|
|
|
|
'Topic :: Internet',
|
|
|
|
],
|
|
|
|
)
|