forked from jfilak/sapcli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 1.38 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
[build-system]
requires = ["setuptools>=83.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sapcli"
version = "1.0.0"
description = "Command line interface to SAP products"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Jakub Filak", email = "jakub@thefilaks.net" }]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: System :: Systems Administration",
]
dependencies = [
"requests>=2.20.0",
"pyodata>=1.12.0",
"PyYAML>=6.0.1",
"platformdirs>=4.5.1",
"truststore>=0.10.4",
]
[project.urls]
Homepage = "https://github.com/jfilak/sapcli"
Repository = "https://github.com/jfilak/sapcli"
Issues = "https://github.com/jfilak/sapcli/issues"
[project.scripts]
sapcli = "sap.cli._entry:main"
[project.optional-dependencies]
dev = [
"coverage>=7.15.2",
"pylint>=4.0.6",
"flake8>=7.3.0",
"mypy>=0.930",
"types-PyYAML>=6.0.1",
"types-requests>=2.26.2",
"build",
]
test = [
"pytest>=2.7.0",
"pytest-cov",
"codecov",
"flake8",
"pylint",
]
[tool.setuptools.packages.find]
exclude = ["test*", "build", "dist"]