setup.py (1215B)
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_VERSION = "1.0.0" 8 9 setup( 10 name="mozshellutil", 11 version=PACKAGE_VERSION, 12 description="Shell command line parsing utilities for Mozilla testing", 13 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", 14 classifiers=[ 15 "Programming Language :: Python", 16 "Programming Language :: Python :: 3 :: Only", 17 "Programming Language :: Python :: 3.8", 18 "Programming Language :: Python :: 3.9", 19 "Programming Language :: Python :: 3.10", 20 "Programming Language :: Python :: 3.11", 21 "Programming Language :: Python :: 3.12", 22 "Programming Language :: Python :: 3.13", 23 ], 24 keywords="mozilla", 25 author="Mozilla Automation and Testing Team", 26 author_email="tools@lists.mozilla.org", 27 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 28 license="MPL", 29 packages=["mozshellutil"], 30 include_package_data=True, 31 zip_safe=False, 32 python_requires=">=3.8", 33 )