-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1019 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "zotnote"
version = "0.3.5"
description = "Streamlining reading notes with Zotero"
authors = [
"Asura Enkhbayar <asura.enkhbayar@gmail.com>"
]
license = "MIT"
packages = [
{ include = "zotnote", from="src" }
]
keywords = ['zotero', 'literature-review', 'reading-notes']
readme = 'README.md'
repository = "https://github.com/bubblbu/zotnote"
homepage = "https://github.com/bubblbu/zotnote"
[tool.poetry.scripts]
zotnote = "zotnote.app:main"
[tool.poetry.dependencies]
python = "^3.6"
click = "^7.1.1"
jinja2 = "^2.11.1"
xdg = "^4.0.1"
tomlkit = "^0.5.11"
requests = "^2.23.0"
click-option-group = "^0.3.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
autopep8 = "^1.5"
pytest = "5.3.*"
pytest-sugar = "^0.9.2"
pytest-cov = "^2.8.1"
black = "^19.10b0"
flake8-docstrings = "^1.5.0"
bump2version = "^1.0.0"
pre-commit = "^1.10"
ipykernel = "^5.2.0"
[tool.isort]
line_length = 88
force_single_line = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"