-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import setup
from logspam import __version__
setup(
name="mozilla-log-spam",
version=__version__,
description="Mozilla test log spam classifier",
long_description="Tools for identifying the most verbose warnings emitted during testing.",
url="https://github.com/EricRahm/log-spam-hell",
author="Eric Rahm",
author_email="[email protected]",
download_url="https://github.com/EricRahm/log-spam-hell/tarball/%s" % __version__,
license="MPL 2.0",
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"
],
packages=["logspam"],
install_requires=[
"mozregression>=4.0,<4.1",
"requests>=2.24,<2.25",
"treeherder-client>=5.0,<5.1",
],
entry_points={
'console_scripts': ['log_spam=logspam.cli_entry:main']
}
)