-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (40 loc) · 1.35 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "yml2block"
version = "0.6.0"
description = "Converts yaml files describing dataverse metadata blocks into tsv files understood by dataverse."
license = "MIT"
authors = [
"Henning Timm <[email protected]>"
]
repository = "https://github.com/HenningTimm/yml2block"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
packages = [
{ include = "yml2block" },
]
[tool.poetry.scripts]
yml2block = 'yml2block.__main__:main'
[tool.poetry.dependencies]
python = "^3.10"
# Package names with '.' need quotes to make poetry happy
"ruamel.yaml" = "^0.17.21" # Earlier versions might work, but are untested.
click = "^8.1" # Earlier versions might work, but are untested.
# Optional dependencies
pytest = { version = "^7.2", optional = true } # Earlier versions might work, but are untested.
[tool.poetry.extras]
tests = ["pytest"]