-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
60 lines (50 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
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "jupyter-to-medium"
version = "0.2.13"
description = "Publish a Jupyter Notebook as a Medium blogpost"
authors = ["dexplo <[email protected]>"]
maintainers = ["mjam03 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dexplo/jupyter_to_medium"
repository = "https://github.com/dexplo/jupyter_to_medium"
documentation = "https://www.dexplo.org/jupyter_to_medium/"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
Changelog = "https://github.com/dexplo/jupyter_to_medium/releases"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
beautifulsoup4 = "^4.12.0"
matplotlib = "^3.7.1"
nbconvert = "^7.2.10"
numpy = "^1.24.2"
requests = "^2.28.2"
jupyter-contrib-nbextensions = "^0.7.0"
jupyter = "^1.0.0"
jinja2 = "3.0.3"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = "^21.11b1"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
coverage = {extras = ["toml"], version = "^6.1.2"}
nox = "^2021.10.1"
nox-poetry = "^0.9.0"
# let pytest coverage know where code is
[tool.poetry.group.dev.dependencies]
mypy = "^1.1.1"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["jupyter_to_medium"]
[tool.poetry.scripts]
jupyter_to_medium = "jupyter_to_medium._command_line:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"