forked from infrae/moai
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (74 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
85 lines (74 loc) · 2.26 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
85
[project]
authors = [
{ name = 'Infrae', email = 'info@infrae.com' },
{ name = "Utrecht University Yoda team", email = "yoda@uu.nl" }
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment"
]
dependencies = [
'oaipmh==3.1.0',
'WSGIUtils',
'wsgi_intercept',
'webob',
'paste',
'pasteDeploy',
'pasteScript',
'sqlalchemy==2.0.9',
'xmltodict',
'mod-wsgi==4.9.3',
'wsgiserver',
'lxml==6.1.0',
'requests==2.33.0',
'sqlalchemy-pysqlite3==0.0.4'
]
description = "MOAI for Yoda"
license = "BSD-3-Clause"
name = "moai"
dynamic = ["version"]
[build-system]
requires = ["setuptools == 81.0.0", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[project.entry-points."moai.content"]
moai_example = "moai.example:ExampleContent"
moai_yoda = "moai.yoda:YodaContent"
[project.entry-points."moai.database"]
sqlite = "moai.database:SQLDatabase"
mysql = "moai.database:SQLDatabase"
postgres = "moai.database:SQLDatabase"
oracle = "moai.database:SQLDatabase"
"sqlite+pysqlite3" = "moai.database:SQLDatabase"
[project.entry-points."moai.format"]
oai_dc = "moai.metadata.oaidc:OAIDC"
datacite = "moai.metadata.datacite:DataCite"
oai_datacite = "moai.metadata.datacite:DataCite"
iso19139 = "moai.metadata.iso:Iso"
[project.entry-points."moai.provider"]
file = "moai.provider.file:FileBasedContentProvider"
list = "moai.provider.list:ListBasedContentProvider"
oai = "moai.provider.oai:OAIBasedContentProvider"
fedora = "moai.provider.fedora:FedoraBasedContentProvider"
[project.entry-points."paste.app_factory"]
main = "moai.wsgi:app_factory"
[project.scripts]
update_moai = "moai.tools:update_moai"
[project.urls]
Homepage = "https://www.uu.nl/en/research/yoda"
Documentation = "https://utrechtuniversity.github.io/yoda/"
Repository = "https://github.com/utrechtuniversity/yoda-moai"
Issues = "https://github.com/utrechtuniversity/yoda-moai/issues"
[tool.flake8]
ignore = "E501"
import-order-style = "smarkets"
application-import-names = ["moai"]
exclude = [
"venv"
]
[tool.setuptools]
packages = ["moai"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"