lookyloo/setup.py

29 lines
975 B
Python
Raw Normal View History

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',
2020-06-10 18:41:03 +02:00
version='1.0-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'],
scripts=['bin/start_website.py', 'bin/start.py', 'bin/run_backend.py', 'bin/async_scrape.py',
'bin/shutdown.py', 'bin/stop.py', 'bin/rebuild_caches.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',
],
)