-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "metriq-client"
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.12"
tea-client = { git = "https://github.com/unitaryfund/tea-client.git", branch = "develop" }
tea-console = { git = "https://github.com/unitaryfund/tea-console.git", branch = "develop" }
typer = "^0.12.5"
[tool.poetry.scripts]
metriq = "metriq.__main__:app"