-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
34 lines (29 loc) · 843 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
[tool.poetry]
name = "blogger-cli"
version = "1.2.4"
description = "Blogger cli is a CLI tool to convert ipynb, md, html file to responsive html files."
authors = ["hemanta212 <sharmahemanta.212@gmail.com>"]
readme = "README.md"
repository = "https://github.com/hemanta212/blogger-cli"
documentation = "https://hemanta212.github.io/blogger-cli"
keywords = ["jupyter notebook", "github pages", "blogger"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
nbconvert = "^5.5"
click = "^7.0"
bs4 = "^0.0.1"
markdown = "^3.1"
pyspellchecker = "^0.5.0"
feedgen = "^0.9.0"
misspellings = "^1.5"
selectolax = "^0.2.1"
colorama = "^0.4.1"
[tool.poetry.scripts]
blogger = 'blogger_cli.cli:cli'
[tool.poetry.dev-dependencies]
pylint = "^2.4"
flake8 = "^3.7.9"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"