-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ebscopy"
version = "1.0.0"
description = "Official Python wrapper for the EBSCO Discovery Service (EDS) API"
readme = "README.md"
license = {file = "LICENSE.TXT"}
requires-python = ">=3.12"
authors = [
{ name = "Jesse Jensen", email = "[email protected]" },
{ name = "Olivia Muzzy", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests",
"lxml",
"python-dateutil"
]
[project.urls]
Homepage = "https://github.com/ebsco/ebscopy"
[tool.hatch.build.targets.wheel.shared-data]
samples = "ebscopy/samples"
docs = "ebscopy/docs"
[tool.hatch.build.targets.sdist]
include = [
"/ebscopy",
]
exclude = [
".gitignore",
]