Skip to content

Commit

Permalink
Merge pull request #121 from AVDiv/migration/setup-to-pyproject
Browse files Browse the repository at this point in the history
Migrated from `setup.py` to `pyproject.toml`
  • Loading branch information
vprusso authored Jun 3, 2024
2 parents 626314e + d05876d commit 2622d47
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 29 deletions.
38 changes: 38 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "metriq"
version = "0.1.2"
description = "Python client for metriq API."
readme = "README.md"
authors = [
"Viktor Kerkez <[email protected]>",
"UnitaryFund",
"Daniel Strano <[email protected]>",
"Vincent Russo <[email protected]>"
]
maintainers = [
"Viktor Kerkez <[email protected]>",
"UnitaryFund",
"Daniel Strano <[email protected]>",
"Vincent Russo <[email protected]>"
]
urls = { "Homepage" = "https://github.com/unitaryfund/metriq-client" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "^3.6"
tea-client = "0.0.7"
tea-console = "0.0.5"
typer = "0.3.2"

[tool.poetry.scripts]
metriq = "metriq.__main__:app"

29 changes: 0 additions & 29 deletions setup.py

This file was deleted.

0 comments on commit 2622d47

Please sign in to comment.