setup.py (1469B)
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 = "mozproxy" 8 PACKAGE_VERSION = "1.0" 9 10 # dependencies 11 deps = ["redo", "mozinfo", "mozlog >= 6.0"] 12 13 setup( 14 name=PACKAGE_NAME, 15 version=PACKAGE_VERSION, 16 description="Proxy for playback", 17 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", 18 classifiers=[ 19 "Programming Language :: Python", 20 "Programming Language :: Python :: 3 :: Only", 21 "Programming Language :: Python :: 3.8", 22 "Programming Language :: Python :: 3.9", 23 "Programming Language :: Python :: 3.10", 24 "Programming Language :: Python :: 3.11", 25 "Programming Language :: Python :: 3.12", 26 "Programming Language :: Python :: 3.13", 27 ], 28 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 29 keywords="mozilla", 30 author="Mozilla Automation and Tools team", 31 author_email="tools@lists.mozilla.org", 32 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 33 license="MPL", 34 packages=["mozproxy"], 35 install_requires=deps, 36 entry_points={ 37 "console_scripts": [ 38 "mozproxy=mozproxy.driver:main", 39 ], 40 }, 41 include_package_data=True, 42 zip_safe=False, 43 python_requires=">=3.8", 44 )