-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (34 loc) · 1.08 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
[build-system]
requires = ["flit_core >=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "MpApi"
authors = [{name = "Maurice Mengel", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
dynamic = ["version", "description"]
keywords = ["museum", "museumPlus", "api client"]
# datetime should be included in Python
# typing_extensions makes newer typing features available to older Pythons
dependencies = [
"flit",
"lxml >=4.8.0", #pathlike objects
"requests >=2.6",
]
[project.optional-dependencies]
test = [
"tomli >= 2.0.0", # only required for python_version < 3.11
"pytest >=2.7.3",
]
[project.scripts]
mink = 'mpapi:mink'
getAttachments = 'mpapi:getAttachments'
getAttachment = 'mpapi:getAttachment'
getItem = 'mpapi:getItem'
getDefinition = 'mpapi:getDefinition'
updateItem = 'mpapi:updateItem'
validate = 'mpapi:validate'
filter = 'mpapi:filter'
[tool.flit.sdist]
include = ["src/MpApi/__init__.py"] # windows is strange with capital letters