-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (39 loc) · 882 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ak_sap"
requires-python = ">=3.11.0"
authors = [{name = "Arun Kishore", email = "pypi@rpakishore.co.in"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)"]
dynamic = ["version", "description"]
dependencies = [
"comtypes>=1.4.8",
"forallpeople==2.6.7",
"pandas>=2.1.3"
]
[project.optional-dependencies]
dev = [
"ipykernel",
"ipywidgets",
"pandasgui",
"line-profiler"
]
gui = [
"streamlit==1.40.1",
"hilti_profis==0.0.3"
]
cli = [
"rich==13.7.0",
"typer[all]==0.9.0"
]
test = [
"pytest==7.4.3"
]
[project.urls]
Home = "https://github.com/rpakishore/ak_sap"
[project.scripts]
gui="ak_sap.gui.gui_app:app"
update-doc="ak_sap.cli.update_doc:app"