-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (40 loc) · 1.01 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
[tool.poetry]
name = "nmdc-automation"
version = "0.1.0"
description = "Python Package to manage automation of submitting workflows end to end or importing existing products that are NMDC Schema compliant"
authors = ["Michal Babinski <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "nmdc_automation"}]
[tool.poetry.dependencies]
python = "^3.9"
pymongo = "^4.3.3"
pyYAML = "^6.0"
requests = "^2.28.2"
nmdc-schema = "^11.1.0"
deepdiff = "^6.2.1"
pytz = "^2023.3"
python-dotenv = "^1.0.0"
click = "^8.1.3"
pytest = "^7.3.1"
pytest-mock = "^3.12.0"
flake8 = "^7.0.0"
setuptools = "^69.0.3"
pandas = "^2.1.4"
pytest-coverage = "^0.0"
semver = "^3.0.2"
mongomock = "^4.1.2"
requests-mock = "^1.11.0"
pytest-local-badge = "^1.0.3"
pysam = "^0.22.1"
importlib = "^1.0.4"
tomli = "^2.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
[tool.poetry-dynamic-versioning]
enable = false
vcs = "git"
style = "pep440"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"