setup.py (1470B)
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 find_packages, setup 6 7 PACKAGE_NAME = "mozlog" 8 PACKAGE_VERSION = "8.0.0" 9 DEPS = [ 10 "blessed>=1.19.1", 11 "mozterm", 12 ] 13 14 15 setup( 16 name=PACKAGE_NAME, 17 version=PACKAGE_VERSION, 18 description="Robust log handling specialized for logging in the Mozilla universe", 19 long_description="see https://firefox-source-docs.mozilla.org/mozbase/index.html", 20 author="Mozilla Automation and Testing Team", 21 author_email="tools@lists.mozilla.org", 22 url="https://wiki.mozilla.org/Auto-tools/Projects/Mozbase", 23 license="Mozilla Public License 2.0 (MPL 2.0)", 24 packages=find_packages(), 25 zip_safe=False, 26 install_requires=DEPS, 27 tests_require=["mozfile"], 28 platforms=["Any"], 29 classifiers=[ 30 "Development Status :: 4 - Beta", 31 "Environment :: Console", 32 "Intended Audience :: Developers", 33 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", 34 "Operating System :: OS Independent", 35 "Programming Language :: Python :: 3.5", 36 "Topic :: Software Development :: Libraries :: Python Modules", 37 ], 38 package_data={"mozlog": ["formatters/html/main.js", "formatters/html/style.css"]}, 39 entry_points={"console_scripts": ["structlog = mozlog.scripts:main"]}, 40 )