-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
33 lines (29 loc) · 960 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
[build-system]
requires = [
"setuptools>=61.2",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "rw-cli-keywords"
description = "A set of RunWhen published CLI keywords and python libraries for interacting with APIs using CLIs"
readme = "README.md"
license = { text = "Apache License 2.0" }
authors = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
# We declare these fields as dynamic because they come from external files
dynamic = ["version", "dependencies"]
[tool.setuptools.packages.find]
where = ["libraries"]
# Dynamically read the version from the VERSION file
# and the dependencies from requirements.txt.
[tool.setuptools.dynamic]
version = { file = "VERSION" }
dependencies = { file = "requirements.txt" }
[project.urls]
homepage = "https://github.com/runwhen-contrib/rw-cli-codecollection"