-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (51 loc) · 1.48 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
[tool.poetry]
name = "zotero2md"
version = "0.2.0"
description = "Export Zotero annotations and notes to Markdown files."
readme = "README.md"
authors = ["ealizadeh <[email protected]>"]
homepage = "https://github.com/e-alizadeh/Zotero2MD"
repository = "https://github.com/e-alizadeh/Zotero2MD"
documentation = "https://github.com/e-alizadeh/Zotero2MD"
keywords = [
"Zotero",
"Markdown",
"Note-Taking",
]
license = "MIT"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Utilities",
"Typing :: Typed",
"Development Status :: 3 - Alpha"
]
[tool.semantic_release]
version_variable = [
"zotero2md/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "release"
upload_to_repository = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.poetry.dependencies]
python = "^3.8"
Pyzotero = "^1.4.26"
SnakeMD = "^0.9.3"
markdownify = "^0.10.1"
[tool.poetry.dev-dependencies]
ipython = "^7.32.0"
pre-commit = "^2.16.0"
python-dotenv = "^0.19.2"
ipdb = "^0.13.9"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/e-alizadeh/Zotero2MD/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"