1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
[metadata]
name = onionprobe
version = 1.4.1
url = https://onionservices.torproject.org/apps/web/onionprobe
author = Silvio Rhatto
author_email = rhatto@torproject.org
license = GPLv3
description = Test and monitors the status of Tor Onion Services
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Topic :: System :: Monitoring
Topic :: Internet
Topic :: Security
Topic :: Security :: Cryptography
Topic :: System :: Networking :: Monitoring
[options]
packages = find:
package_dir =
= packages
install_requires =
requests >= 2.27.1
stem >= 1.8.0
prometheus-client >= 0.14.1
pyyaml >= 6.0
pysocks >= 1.7.1
cryptography >= 3.4.8
python_requires = >= 3.9
#scripts =
# packages/real-world-onion-sites.py
# packages/securedrop.py
# packages/tpo.py
[options.entry_points]
console_scripts =
onionprobe = onionprobe.app:run_from_cmdline
[options.data_files]
share/onionprobe/configs/ =
configs/tor.yaml
configs/real-world-onion-sites.yaml
configs/securedrop.yaml
share/onionprobe/examples/ =
packages/real-world-onion-sites.py
packages/securedrop.py
packages/tpo.py
[options.packages.find]
where = packages
|