setup.py (1416B)
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 find_packages, setup 6 7 PACKAGE_VERSION = "1.1.0" 8 9 # dependencies 10 deps = ["mozinfo"] 11 12 setup( 13 name="moztest", 14 version=PACKAGE_VERSION, 15 description="Package for storing and outputting Mozilla test results", 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 "Development Status :: 5 - Production/Stable", 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=find_packages(), 35 include_package_data=True, 36 zip_safe=False, 37 install_requires=deps, 38 python_requires=">=3.8", 39 )