tor-browser

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

setup.py (1557B)


      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 = "1.2.3"
      8 
      9 # dependencies
     10 deps = [
     11    "distro >= 1.4.0",
     12    "mozfile >= 0.12",
     13 ]
     14 
     15 setup(
     16    name="mozinfo",
     17    version=PACKAGE_VERSION,
     18    description="Library to get system information for use in Mozilla testing",
     19    long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
     20    classifiers=[
     21        "Programming Language :: Python",
     22        "Programming Language :: Python :: 3 :: Only",
     23        "Programming Language :: Python :: 3.8",
     24        "Programming Language :: Python :: 3.9",
     25        "Programming Language :: Python :: 3.10",
     26        "Programming Language :: Python :: 3.11",
     27        "Programming Language :: Python :: 3.12",
     28        "Programming Language :: Python :: 3.13",
     29        "Development Status :: 5 - Production/Stable",
     30    ],
     31    # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
     32    keywords="mozilla",
     33    author="Mozilla Automation and Testing Team",
     34    author_email="tools@lists.mozilla.org",
     35    url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
     36    license="MPL",
     37    packages=["mozinfo"],
     38    include_package_data=True,
     39    zip_safe=False,
     40    install_requires=deps,
     41    entry_points="""
     42      # -*- Entry points: -*-
     43      [console_scripts]
     44      mozinfo = mozinfo:main
     45      """,
     46    python_requires=">=3.8",
     47 )