-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.13 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
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
78
79
80
81
82
83
84
[project]
name = "search-query"
version = "0.15.0"
description = "Package for managing literature search queries."
authors = [
{ name = "Peter Eckhardt" },
{ name = "Katharina Ernst" },
{ name = "Thomas Fleischmann" },
{ name = "Anna Geßler" },
{ name = "Karl Schnickmann" },
{ name = "Gerit Wagner", email = "gerit.wagner@uni-bamberg.de" },
]
license = { text = "MIT" }
readme = "README.md"
keywords = ["search query", "literature search", "query translation", "research", "reproducible research", "open science", "literature", "literature review", "systematic review", "systematic literature review"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
'importlib-resources>=5.1; python_version < "3.9"'
]
[project.urls]
Homepage = "https://github.com/CoLRev-Environment/search-query"
Documentation = "https://colrev-environment.github.io/search-query/"
[project.optional-dependencies]
docs = [
"Sphinx>=5.2.3",
"sphinx-rtd-theme>=1.1.1",
"sphinx-copybutton>=0.5.2",
"sphinxcontrib.datatemplates>=0.7"
]
dev = [
"pylint==3.0.1",
"pytest>=7.2.1",
"pre-commit>=3.0.0"
]
[project.scripts]
search-query = "search_query.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["search_query"]
[tool.hatch.build.targets.sdist]
include = [
"search_query/**",
"LICENSE",
"README.md",
"pyproject.toml",
]
[tool.pylint.MAIN]
extension-pkg-whitelist = "lxml.etree"
[tool.mypy]
python_version = 3.8
warn_unused_configs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"requests.*",
"yaml.*",
"pkg_resources.*",
"tabulate.*",
]
ignore_missing_imports = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"