-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.89 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wiley-tdm"
version = "1.1.0"
description = "Client for downloading Article PDFs from Wiley's TDM API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"requests>=2.33.1",
]
authors = [
{name = "Wiley Labs", email = "tdm@wiley.com"}
]
license = {file = "LICENSE"}
keywords = ["wiley", "tdm", "pdf", "doi", "text-mining", "data-mining", "client", "api", "sdk"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/WileyLabs/tdm-client"
Changelog = "https://github.com/WileyLabs/tdm-client/blob/main/CHANGELOG.md"
Repository = "https://github.com/WileyLabs/tdm-client"
Issues = "https://github.com/WileyLabs/tdm-client/issues"
[project.optional-dependencies]
lint = [
"black>=26.3.1",
"pylint>=4.0.5",
"isort>=8.0.1",
"pytest>=9.0.3",
]
test = [
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
]
build = [
"build>=1.5.0",
"twine>=6.2.0"
]
dev = [
"wiley-tdm[lint,test,build]", # Inherit test and build dependencies
]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
fail_under = 95
show_missing = true
[tool.hatch.build.targets.wheel]
packages = ["src/wiley_tdm"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/examples",
"/tests",
"*.md",
"LICENSE"
]