-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (43 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "viur-scriptor-api"
dynamic = ["version"]
authors = [
{ name = "Mausbrand Informationssysteme GmbH", email = "[email protected]" },
]
description = "This is the internal Scriptor library that the viur-scriptor utilizes. The API includes components for networking as well as parts related to the Scriptor's files."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Interpreters",
"Operating System :: OS Independent",
]
dependencies = [
"requests==2.31.0",
"openpyxl==3.1.5",
"prompt_toolkit==3.0.47",
"simple-term-menu==1.6.4",
"chardet==5.2.0",
"python-magic==0.4.27",
]
[tool.flit.metadata]
module = "viur.scriptor"
[tool.hatch.build]
exclude = [
"/.*",
"/docs",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["viur"]
[tool.hatch.version]
path = "viur/scriptor/__init__.py"
[project.urls]
"Homepage" = "https://github.com/viur-framework/viur-scriptor-api"
"Bug Tracker" = "https://github.com/viur-framework/viur-scriptor-api/issues"