-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
77 lines (70 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling>=1.10.0"]
[project]
name = "papis-zotero"
description = "Interact with Zotero using papis"
version = "0.1.2"
authors = [{ name = "Alejandro Gallo", email = "aamsgallo@gmail.com" }]
maintainers = [{ name = "Alejandro Gallo", email = "aamsgallo@gmail.com" }]
readme = "README.rst"
license = { text = "GPLv3" }
classifiers = [
"Environment :: Console :: Curses",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
keywords = ["bibtex", "biliography", "cli", "management", "papis", "zotero"]
dependencies = ["papis==0.13"]
[project.urls]
Repository = "https://github.com/papis/papis-zotero"
[project.optional-dependencies]
"develop" = [
"flake8",
"flake8-bugbear",
"flake8-quotes",
"Flake8-pyproject",
"mypy>=0.7",
"pep8-naming",
"pytest",
"pytest-cov",
"python-coveralls",
"types-PyYAML",
"types-tqdm",
]
[project.entry-points."papis.command"]
"zotero" = "papis_zotero:main"
[tool.flake8]
select = ["B", "D", "E", "F", "N", "Q", "W"]
extend-ignore = ["B019", "E123", "N818", "W503"]
max-line-length = 88
inline-quotes = "double"
multiline-quotes = "double"
[tool.pytest.ini_options]
norecursedirs = ".git doc build dist"
python_files = "*.py"
markers = ["config_setup: setup for tmp_config",
"library_setup: setup for tmp_library",
]
[tool.mypy]
strict = true
show_column_numbers = true
hide_error_codes = false
pretty = true
warn_unused_ignores = false