blob: 6bb14097fcf624cc3ab7f303648d4bca7e4e3a46 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
[project]
name = "apache-otava"
version = "0.7.0"
description = "Apache Otava (Incubating): Change Detection for Continuous Performance Engineering"
readme = "README.md"
requires-python = ">=3.8,<3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "Apache Otava (Incubating)", email = "dev@otava.apache.org" }
]
maintainers = [
{ name = "Apache Otava (Incubating)", email = "dev@otava.apache.org" }
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"dateparser>=1.0.0",
"numpy==1.24.*",
"python-dateutil>=2.8.1",
"signal-processing-algorithms==1.3.5",
"ruamel.yaml==0.17.21",
"requests>=2.25.1",
"pystache>=0.6.0",
"tabulate>=0.8.7",
"validators>=0.18.2",
"slack-sdk>=3.4.2",
"google-cloud-bigquery>=3.25.0",
"pg8000>=1.31.2",
"configargparse>=1.7.1",
"expandvars>=0.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.2.2",
"pytest-benchmark>=4.0.0",
"pytz==2021.1",
"tox==3.25",
"flake8>=4.0.1",
"autoflake>=1.4",
"isort>=5.10.1",
"ruff>=0.6.9",
"pre-commit==3.5.0",
]
[project.scripts]
otava = "otava.main:main"
[project.urls]
Homepage = "https://otava.apache.org"
Documentation = "https://otava.apache.org/docs/overview"
Repository = "https://github.com/apache/otava"
"Bug Tracker" = "https://github.com/apache/otava/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["otava"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:future",
"ignore::pytest.PytestCollectionWarning",
]
[tool.ruff]
line-length = 100
[tool.isort]
profile = "black"