25 lines
614 B
Python
25 lines
614 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='docker-tor-hidden-service',
|
|
version='0.7.1',
|
|
description='Display onion sites hosted',
|
|
author='Christophe Mehay',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'cryptography>=3.4.7',
|
|
'stem>=1.8.0',
|
|
'PyYAML>=6.0',
|
|
'vanguards>=0.3.1',
|
|
'pyentrypoint>=0.8.0',
|
|
'Jinja2>=3.0',
|
|
'importlib-metadata>=4.0; python_version < "3.10"',
|
|
'ipy>=1.00',
|
|
'pytor>=0.1.9',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'onions=onions:main',
|
|
],
|
|
},
|
|
)
|