Skip to content

Commit

Permalink
Prepare for major release
Browse files Browse the repository at this point in the history
We are happy to announce we are ready to release
GrimoireLab 1.0

Signed-off-by: Santiago Dueñas <[email protected]>
  • Loading branch information
sduenas committed Apr 9, 2024
1 parent 545e246 commit 13e3d4b
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions releases/unreleased/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
[tool.poetry]
name = "kidash"
version = "0.6.9"
description = "GrimoireLab script to manage Kibana dashboards from the command line"
authors = [
"GrimoireLab Developers"
]
license = "GPL-3.0+"

readme = "README.md"

homepage = "https://chaoss.github.io/grimoirelab/"
repository = "https://github.com/chaoss/grimoirelab-kidash"

keywords = [
"development",
"grimoirelab"
]

packages = [
{ include = "kidash" },
{ include = "tests", format = "sdist" },
]

include = [
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]

classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/chaoss/grimoirelab-kidash/issues"

[tool.poetry.scripts]
kidash = 'kidash.bin.kidash:main'

[tool.poetry.dependencies]
python = "^3.8"
python-dateutil = "^2.8.2"
requests = "^2.7.0"
urllib3 = "^1.26"

[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
coverage = "^7.2.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 13e3d4b

Please sign in to comment.