setup.py (1477B)
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 = "0.7.1" 8 deps = ["moznetwork >= 0.24", "mozinfo >= 1.0.0"] 9 10 setup( 11 name="mozhttpd", 12 version=PACKAGE_VERSION, 13 description="Python webserver intended for use with Mozilla testing", 14 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", 15 classifiers=[ 16 "Programming Language :: Python", 17 "Programming Language :: Python :: 3 :: Only", 18 "Programming Language :: Python :: 3.8", 19 "Programming Language :: Python :: 3.9", 20 "Programming Language :: Python :: 3.10", 21 "Programming Language :: Python :: 3.11", 22 "Programming Language :: Python :: 3.12", 23 "Programming Language :: Python :: 3.13", 24 ], 25 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 26 keywords="mozilla", 27 author="Mozilla Automation and Testing Team", 28 author_email="tools@lists.mozilla.org", 29 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 30 license="MPL", 31 packages=["mozhttpd"], 32 include_package_data=True, 33 zip_safe=False, 34 install_requires=deps, 35 entry_points=""" 36 # -*- Entry points: -*- 37 [console_scripts] 38 mozhttpd = mozhttpd:main 39 """, 40 python_requires=">=3.8", 41 )