-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.25 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyxecm"
version = "0.0.0"
authors = [
{ name = "Kai Gatzweiler", email = "[email protected]" },
{ name = "Dr. Marc Diefenbruch", email = "[email protected]" },
]
description = "A Python library to interact with Opentext Extended ECM REST API"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
]
dependencies = [
'requests < 3',
'requests_toolbelt',
'setuptools',
'kubernetes',
'zipfile36',
'suds',
'python-hcl2',
'xmltodict',
'lxml',
'openpyxl',
'pandas',
'python-magic',
'websockets',
]
keywords = [
"opentext",
"extendedecm",
"contentserver",
"otds",
"appworks",
"archivecenter",
]
[tool.setuptools]
packages = ['pyxecm', 'pyxecm.customizer', 'pyxecm.helper']
[project.urls]
"Homepage" = "https://github.com/opentext/pyxecm"
[project.optional-dependencies]
customizer = ['python-hcl2', 'lxml', 'pyrfc']