setup.py (1442B)
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 = "mozpower" 8 PACKAGE_VERSION = "1.1.2" 9 10 deps = ["mozlog >= 6.0", "mozdevice >= 4.0.0,<5"] 11 12 setup( 13 name=PACKAGE_NAME, 14 version=PACKAGE_VERSION, 15 description="Mozilla-authored power usage measurement tools", 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 ], 27 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 28 keywords="", 29 author="Mozilla Performance Test Engineering Team", 30 author_email="tools@lists.mozilla.org", 31 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 32 license="MPL", 33 packages=["mozpower"], 34 include_package_data=True, 35 zip_safe=False, 36 install_requires=deps, 37 entry_points=""" 38 # -*- Entry points: -*- 39 """, 40 python_requires=">=3.8", 41 )