tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

setup.py (1381B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
      3 # You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 from setuptools import setup
      6 
      7 PACKAGE_VERSION = "0.3.1"
      8 DEPS = ["mozinfo"]
      9 
     10 
     11 setup(
     12    name="mozdebug",
     13    version=PACKAGE_VERSION,
     14    description="Utilities for running applications under native code debuggers "
     15    "intended for use in Mozilla testing",
     16    long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
     17    classifiers=[
     18        "Programming Language :: Python",
     19        "Programming Language :: Python :: 3 :: Only",
     20        "Programming Language :: Python :: 3.8",
     21        "Programming Language :: Python :: 3.9",
     22        "Programming Language :: Python :: 3.10",
     23        "Programming Language :: Python :: 3.11",
     24        "Programming Language :: Python :: 3.12",
     25        "Programming Language :: Python :: 3.13",
     26    ],
     27    # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
     28    keywords="mozilla",
     29    author="Mozilla Automation and Testing Team",
     30    author_email="tools@lists.mozilla.org",
     31    url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
     32    license="MPL",
     33    packages=["mozdebug"],
     34    include_package_data=True,
     35    zip_safe=False,
     36    install_requires=DEPS,
     37    python_requires=">=3.8",
     38 )