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
9 with
open("README.md", "r") as fh
:
10 long_description
= fh
.read()
13 author
="Mozilla Telemetry Team",
14 author_email
="telemetry-client-dev@mozilla.com",
16 "https://firefox-source-docs.mozilla.org/"
17 "toolkit/components/telemetry/telemetry/collection/index.html"
20 description
="Shared parsers for the Telemetry probe regitries.",
21 long_description
=long_description
,
22 long_description_content_type
="text/markdown",
24 packages
=find_packages(),
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"],