Backed out changeset f594e6f00208 (bug 1940883) for causing crashes in bug 1941164.
[gecko.git] / toolkit / components / telemetry / build_scripts / setup.py
blobbd8967aec57965cebd4bd9bfae3bf753a7b58bfd
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
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from setuptools import find_packages, setup
7 VERSION = "1.0.0"
9 with open("README.md", "r") as fh:
10 long_description = fh.read()
12 setup(
13 author="Mozilla Telemetry Team",
14 author_email="telemetry-client-dev@mozilla.com",
15 url=(
16 "https://firefox-source-docs.mozilla.org/"
17 "toolkit/components/telemetry/telemetry/collection/index.html"
19 name="mozparsers",
20 description="Shared parsers for the Telemetry probe regitries.",
21 long_description=long_description,
22 long_description_content_type="text/markdown",
23 license="MPL 2.0",
24 packages=find_packages(),
25 version=VERSION,
26 classifiers=[
27 "Topic :: Software Development :: Build Tools",
28 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
29 "Programming Language :: Python :: 2.7",
31 keywords=["mozilla", "telemetry", "parsers"],