-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (55 loc) · 1.73 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
61
62
63
64
65
[tool.poetry]
name = "qlm"
version = "0.0.3"
description = "A command line app for taking beautiful notes."
documentation = "https://osintalex.github.io/qlm/"
authors = ["Alexander Darby <[email protected]>"]
readme = "README.md"
license = "CC0 1.0"
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Environment :: MacOS X',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Typing :: Typed',
]
[tool.poetry.scripts]
qlm = "qlm.main:app"
[tool.poetry.dependencies]
python = "^3.7.0"
typer = {extras = ["all"], version = "^0.6.1"}
httpx = "^0.23.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.2"
pytest-mock = "^3.8.2"
pytest-cov = "^3.0.0"
[tool.poetry.group.lint.dependencies]
mypy = "^0.971"
pylint = "~2.13.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.3.1"
mkdocs-material = "^8.4.2"
mkdocs-glightbox = "^0.2.1"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"