-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (42 loc) · 1.52 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
[tool.poetry]
name = "skillsnetwork"
version = "0.0.0" # Set by GitHub Action
description = "Library for working with Skills Network"
readme="README.md"
authors = ["Bradley Steinfeld <[email protected]>", "Sam Prokopchuk <[email protected]", "James Reeve [email protected]"]
license = "MIT"
[tool.poetry.urls]
"Bug Tracker" = "https://github.ibm.com/skills-network/labs/issues/new?assignees=&labels=bug%2C+labs&template=bug.md&title=Short+explanation+of+how+the+user+sees+the+bug+manifest"
"Repository" = "https://github.com/ibm-skills-network/skillsnetwork-python-library"
"Skills Network Labs" = "https://skills.network/lab-tools"
[tool.poetry.dependencies]
python = "^3.8"
requests = "~2"
tqdm = "~4"
ipywidgets = "^8"
ipython = "*"
ibm-cos-sdk = ">=2.13.3"
typing-extensions = {version = "*", python = "^3.11.3", optional = true}
# Sphinx documentation dependencies
Sphinx = { version = "~4", optional = true }
sphinx-autodoc-typehints = { version = "~1", optional = true }
pydata-sphinx-theme = { version = "~0.9", optional = true }
[tool.poetry.extras]
regular = ["ibm-cos-sdk", "typing-extensions"]
docs = ["Sphinx", "sphinx-autodoc-typehints", "pydata-sphinx-theme"]
[tool.poetry.dev-dependencies]
jupyterlab = "~4"
jupyterlite = "^0.4.0"
build = "^0.10.0"
pytest = "~7"
pytest-asyncio = "^0.23.0"
pytest-httpserver = "^1.0.4"
black = {version = "~22", allow-prereleases = true}
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_mode = "auto"
[build-system]
requires = ["poetry-core==1.9.1"]
build-backend = "poetry.core.masonry.api"