mirror of
https://github.com/cmehay/docker-tor-hidden-service.git
synced 2025-05-31 11:52:15 +00:00
Add onions tool in container
This commit is contained in:
parent
bebf1704ed
commit
8285c00f6e
7 changed files with 122 additions and 18 deletions
42
assets/onions/setup.py
Normal file
42
assets/onions/setup.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='onions',
|
||||
|
||||
version='0.1',
|
||||
|
||||
packages=find_packages(),
|
||||
|
||||
author="Christophe Mehay",
|
||||
|
||||
author_email="cmehay@nospam.student.42.fr",
|
||||
|
||||
description="Display onion sites hosted",
|
||||
|
||||
include_package_data=True,
|
||||
|
||||
url='http://github.com/cmehay/docker-tor-hidden-service',
|
||||
|
||||
classifiers=[
|
||||
"Programming Language :: Python",
|
||||
"Development Status :: 1 - Planning",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Natural Language :: English",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Topic :: System :: Installation/Setup",
|
||||
],
|
||||
|
||||
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'onions = onions:main',
|
||||
],
|
||||
},
|
||||
|
||||
license="WTFPL",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue