-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.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.7.0",
"PyYAML>=6.0.1",
]
[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>=5.4",
"pylint>=2.6.0",
"flake8>=3.8.4",
"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"]