зеркало из https://github.com/mozilla/opmon.git
82 строки
1.8 KiB
Python
82 строки
1.8 KiB
Python
"""Setup."""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
def text_from_file(path):
|
|
"""Return text from file."""
|
|
with open(path, encoding="utf-8") as f:
|
|
return f.read()
|
|
|
|
|
|
test_dependencies = [
|
|
"coverage",
|
|
"isort",
|
|
"jsonschema",
|
|
"pytest",
|
|
"pytest-black",
|
|
"pytest-cov",
|
|
"pytest-pydocstyle",
|
|
"flake8",
|
|
"mypy",
|
|
"types-futures",
|
|
"types-pkg-resources",
|
|
"types-protobuf",
|
|
"types-pytz",
|
|
"types-PyYAML",
|
|
"types-requests",
|
|
"types-six",
|
|
"types-toml",
|
|
]
|
|
|
|
extras = {
|
|
"testing": test_dependencies,
|
|
}
|
|
|
|
|
|
setup(
|
|
name="mozilla-opmon",
|
|
author="Mozilla Corporation",
|
|
author_email="fx-data-dev@mozilla.org",
|
|
description="Continuous monitoring of experiments and rollouts",
|
|
url="https://github.com/mozilla/opmon",
|
|
packages=[
|
|
"opmon",
|
|
"opmon.logging",
|
|
"opmon.tests",
|
|
"opmon.templates",
|
|
],
|
|
package_data={
|
|
"opmon.templates": ["*.sql"],
|
|
"opmon.tests": ["data/*"],
|
|
"opmon": ["../*.toml"],
|
|
},
|
|
install_requires=[
|
|
"attrs",
|
|
"cattrs",
|
|
"Click",
|
|
"click-option-group",
|
|
"GitPython",
|
|
"google-cloud-bigquery",
|
|
"grpcio", # https://github.com/googleapis/google-cloud-python/issues/6259
|
|
"jinja2",
|
|
"pytz",
|
|
"requests",
|
|
"toml",
|
|
"mozilla-metric-config-parser",
|
|
],
|
|
include_package_data=True,
|
|
tests_require=test_dependencies,
|
|
extras_require=extras,
|
|
long_description=text_from_file("README.md"),
|
|
long_description_content_type="text/markdown",
|
|
python_requires=">=3.10",
|
|
entry_points="""
|
|
[console_scripts]
|
|
opmon=opmon.cli:cli
|
|
""",
|
|
# This project does not issue releases, so this number is not meaningful
|
|
# and should not need to change.
|
|
version="2022.10.0",
|
|
)
|