forked from dbmi-bgm/portal-pipeline-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 1.02 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
[tool.poetry]
name = "smaht-pipeline-utils"
version = "0.0.1"
description = "Utilities for deploying pipelines and interfacing with SMaHT portal infrastructure."
authors = [
"Michele Berselli <[email protected]>",
"SMaHT Team"
]
license = "MIT"
repository = 'https://github.com/smaht-dac/smaht-pipeline-utils'
readme = "README.md"
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
packages = [
{ include="pipeline_utils" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
dcicutils = "^8.0.0"
boto3 = "^1.28.62"
awscli = "^1.29.62"
jsonschema = "^4.7.2"
magma-suite = "^3.0.0"
[tool.poetry.dev-dependencies]
pytest = "*"
boto3-stubs = "^1.28.62"
[tool.poetry.scripts]
smaht_pipeline_utils = "pipeline_utils.__main__:main"
publish-to-pypi = "dcicutils.scripts.publish_to_pypi:main"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"