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