This repository was archived by the owner on Jan 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.21 KB
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
[tool.poetry]
name = "pearson-pdf"
version = "1.4.0"
description = "Tool to download Pearson books as PDFs."
authors = ["Joel <joel@joel.tokyo>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jyooru/pearson-pdf"
repository = "https://github.com/jyooru/pearson-pdf"
keywords = ["pearson", "ebook", "pdf"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
exclude = ["tests"]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.26.0"
Pillow = ">=8.3.2,<10.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
python-dotenv = "^0.20.0"
flake8 = "^4.0.1"
black = "^22.3"
pytest-cov = "^3.0.0"
Faker = "^13.15.1"
isort = "^5.9.3"
mypy = "^0.950"
types-requests = "^2.27.29"
[tool.poetry.scripts]
pearson-pdf = "pearson_pdf.__main__:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
lines_after_imports = 2
[tool.mypy]
install_types = true
ignore_missing_imports = true
non_interactive = true
strict = true