forked from podaac/concise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1 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
[tool.poetry]
name = "podaac-concise"
version = "0.5.0-alpha.2"
description = "Harmony service that merges granules"
authors = ["podaac-tva <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/podaac/concise"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
exclude = ['contrib', 'docs', 'tests', 'stress_test']
packages = [
{ include = "podaac" },
]
[tool.poetry.dependencies]
python = "^3.9"
netCDF4 = "^1.5.6"
numpy = "^1.20.3"
harmony-service-lib = "^1.0.16"
importlib-metadata = "^4.8.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1"
flake8 = "^3.8"
pytest-cov = "^2.10"
pylint = "^2.6"
Sphinx = "^4.0"
requests = "^2.25.1"
importlib-metadata = "^4.6.3"
sphinx-rtd-theme = "^1.0"
[tool.poetry.scripts]
merge = 'podaac.merger.merge_cli:main'
concise_harmony = 'podaac.merger.harmony.cli:main'
benchmark = 'stress_test.benchmark:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"