-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (34 loc) · 982 Bytes
/
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 = "sheet2linkml"
version = "1.3.0"
description = "Google Sheets to LinkML generator for the CRDC-H model"
authors = [
"Gaurav Vaidya <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/cancerDHC/sheet2linkml"
repository = "https://github.com/cancerDHC/sheet2linkml"
documentation = "https://github.com/cancerDHC/sheet2linkml"
keywords = ["data model", "linked data", "linkml"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "sheet2linkml" }
]
[tool.poetry.scripts]
sheet2linkml = "sheet2linkml.cli:main"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.26"
linkml-runtime = "^1.1.2"
pygsheets = "^2.0.4"
PyYAML = "^5.4.1"
setuptools = "^52.0.0"
python-dotenv = "^0.15.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.9b0"