2016-03-21 23:36:16 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='onions',
|
|
|
|
|
2019-12-03 08:58:32 +01:00
|
|
|
version='0.5.1',
|
2016-03-21 23:36:16 +01:00
|
|
|
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
|
2019-04-03 16:11:09 +02:00
|
|
|
install_requires=['pyentrypoint==0.5.2',
|
|
|
|
'Jinja2>=2.10',
|
2019-12-03 08:58:32 +01:00
|
|
|
'pytor>=0.1.5'],
|
2016-03-21 23:36:16 +01:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'onions = onions:main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
license="WTFPL",
|
|
|
|
)
|