forked from fairscape/fairscape-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (53 loc) · 1.5 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "fairscape-cli"
description = "CLI tool for B2AI metadata validation and ROCrate creation"
readme = "README.md"
authors = [
{ name = "Max Levinson", email = "mal8ch@virginia.edu"},
{ name = "Sadnan Al Manir", email = "sadnanalmanir@gmail.com"},
{ name = "Tim Clark", email = "twc8q@virginia.edu"}
]
license = {file= "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"]
keywords = ["fairscape", "reproducibility", "fair", "b2ai"]
dependencies = [
"pydantic",
"fairscape-models",
"pyld"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/fairscape/fairscape-cli"
[tool.poetry]
name = "fairscape-cli"
version = "0.1.7a2"
description = "A cli for validating metadata, packaging ROCrates, and interacting with the FAIRSCAPE API"
authors = [
"Max Levinson",
"Sadnan Al Manir",
"Tim Clark"
]
license = "LICENSE"
readme = "README.md"
packages = [{include = "fairscape_cli"}]
[tool.poetry.dependencies]
python = "^3.8"
pyld = "^2.0.3"
click = "^8.1.3"
fairscape-models = "^0.1.2"
imageio = "^2.27.0"
pandas = "^2.0.0"
prettytable = "^3.7.0"
mkdocs-material = "^9.1.18"
[tool.poetry.scripts]
fairscape-cli = "fairscape_cli.main:cli"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
pytest= "^7.2.2"
autopep8 = "^2.0.2"