-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (34 loc) · 1.09 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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "ahab-lib"
version = "1.0.1"
description = "Python CLI library for interacting with ahab cloud API and Kubernetes systems."
license = "Copyright 2024, Tuple, LLC. All rights reserved."
authors = ["Colby T. Ford <[email protected]>"]
repository = "https://github.com/tuplexyz/ahab-lib"
homepage = "https://tuple.xyz/solutions/ahab"
# README file(s) are used as the package description
readme = ["README.md", "LICENSE"]
# Keywords (translated to tags on the package index)
keywords = ["ahab", "bioinformatics", "genomics",
"computational biology", "data science",
"machine learning", "ai", "Kubernetes",
"cloud", "pipelines"]
# Classifiers
classifiers = [
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
packages = [
{ include = "ahab" }
]
# Dependencies
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
requests = "^2.28"
cleo = "^2.1.0"
# Entrypoints and scripts
[tool.poetry.scripts]
ahab = "ahab.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"