tor-browser

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

setup.py (1933B)


      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 = "mozprofile"
      8 PACKAGE_VERSION = "3.0.0"
      9 
     10 deps = [
     11    "mozfile>=1.2",
     12    "mozlog>=6.0",
     13 ]
     14 
     15 setup(
     16    name=PACKAGE_NAME,
     17    version=PACKAGE_VERSION,
     18    description="Library to create and modify Mozilla application profiles",
     19    long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html",
     20    classifiers=[
     21        "Environment :: Console",
     22        "Intended Audience :: Developers",
     23        "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
     24        "Natural Language :: English",
     25        "Operating System :: OS Independent",
     26        "Programming Language :: Python",
     27        "Programming Language :: Python :: 3 :: Only",
     28        "Programming Language :: Python :: 3.8",
     29        "Programming Language :: Python :: 3.9",
     30        "Programming Language :: Python :: 3.10",
     31        "Programming Language :: Python :: 3.11",
     32        "Programming Language :: Python :: 3.12",
     33        "Programming Language :: Python :: 3.13",
     34        "Topic :: Software Development :: Libraries :: Python Modules",
     35    ],
     36    keywords="mozilla",
     37    author="Mozilla Automation and Tools team",
     38    author_email="tools@lists.mozilla.org",
     39    url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase",
     40    license="MPL 2.0",
     41    packages=["mozprofile"],
     42    include_package_data=True,
     43    zip_safe=False,
     44    install_requires=deps,
     45    extras_require={"manifest": ["manifestparser >= 0.6"]},
     46    tests_require=["wptserve"],
     47    entry_points="""
     48      # -*- Entry points: -*-
     49      [console_scripts]
     50      mozprofile = mozprofile:cli
     51      view-profile = mozprofile:view_profile
     52      diff-profiles = mozprofile:diff_profiles
     53      """,
     54    python_requires=">=3.8",
     55 )