-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.64 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
# see https://peps.python.org/pep-0518/
[project]
name = "npoapi"
version = "7.10.1"
description = "Python Library for connecing to npo apis"
authors = [
{name = "Michiel Meeuwissen", email = "[email protected]"},
]
dependencies = [
"ijson==3.2.3",
"jwt==1.3.1",
"python-dateutil==2.8.2",
"pytz==2024.1",
"pyxb==1.2.6", #deprecated
"requests[socks]==2.32.3",
"xsdata[cli]==24.2", # TODO upgrading results in Error: Circular Dependencies Found
"isoduration==20.11.0",
"lxml==5.2.2",
"json-stream==2.3.2",
]
requires-python = ">=3.10"
readme = "README.txt"
license = {text = "MIT"}
[project.optional-dependencies]
testing = [
"pytest==7.4.3",
"xmldiff==2.6.3",
"nose==1.3.7"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
npo_media_get = "npoapi.bin:media_get"
npo_media_search = "npoapi.bin:media_frontendsearch"
npo_media_iterate = "npoapi.bin:media_iterate"
npo_media_follow_changes = "npoapi.bin:media_follow_changes"
npo_media_changes= "npoapi.bin:media_changes"
npo_pages_get = "npoapi.bin:pages_get"
npo_pages_list = "npoapi.bin:pages_list"
npo_pages_search= "npoapi.bin:pages_search"
npo_pages_iterate= "npoapi.bin:pages_iterate"
npo_schedule_get="npoapi.bin:schedule_get"
npo_schedule_search="npoapi.bin:schedule_search"
npo_check_credentials="npoapi.bin:check_credentials"
npo_mediabackend_get="npoapi.bin:mediabackend_get"
npo_mediabackend="npoapi.bin:mediabackend"
npo_pagesbackend="npoapi.bin:pagesbackend"
npo_thesaurus="npoapi.bin:thesaurus"
npo_subtitles="npoapi.bin:subtitles"
#npo_integration_tests'
[tool.hatch.metadata]
allow-direct-references = true