setup.py (1304B)
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 = "mozleak" 8 PACKAGE_VERSION = "1.0.0" 9 10 11 setup( 12 name=PACKAGE_NAME, 13 version=PACKAGE_VERSION, 14 description="Library for extracting memory leaks from leak logs files", 15 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", 16 classifiers=[ 17 "Programming Language :: Python", 18 "Programming Language :: Python :: 3 :: Only", 19 "Programming Language :: Python :: 3.8", 20 "Programming Language :: Python :: 3.9", 21 "Programming Language :: Python :: 3.10", 22 "Programming Language :: Python :: 3.11", 23 "Programming Language :: Python :: 3.12", 24 "Programming Language :: Python :: 3.13", 25 ], 26 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 27 keywords="mozilla", 28 author="Mozilla Automation and Tools team", 29 author_email="tools@lists.mozilla.org", 30 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 31 license="MPL", 32 packages=["mozleak"], 33 zip_safe=False, 34 install_requires=[], 35 python_requires=">=3.8", 36 )