tor-browser

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

setup.py (1500B)


      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_NAME = "manifestparser"
      8 PACKAGE_VERSION = "2.4.0"
      9 
     10 DEPS = [
     11    "mozlog >= 6.0",
     12    "toml >= 0.10.2",
     13    "tomlkit >= 0.12.3",
     14 ]
     15 setup(
     16    name=PACKAGE_NAME,
     17    version=PACKAGE_VERSION,
     18    description="Library to create and manage test manifests",
     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    ],
     30    # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
     31    keywords="mozilla manifests",
     32    author="Mozilla Automation and Testing Team",
     33    author_email="tools@lists.mozilla.org",
     34    url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
     35    license="MPL",
     36    zip_safe=False,
     37    packages=["manifestparser"],
     38    install_requires=DEPS,
     39    entry_points="""
     40      [console_scripts]
     41      manifestparser = manifestparser.cli:main
     42      """,
     43    python_requires=">=3.8",
     44 )