-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.21 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
# SPDX-FileCopyrightText: 2022 Antonin Bas
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]",
"setuptools_scm_git_archive",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "p4runtime-shell"
description = "The P4Runtime shell"
authors = [{name = "P4 API Working Group", email = "p4-api@lists.p4.org"}]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.6"
dependencies = [
"jedi == 0.17.2",
"ipython >= 7.31.1, == 7.31.*; python_version>='3.7'",
"ipython >= 7.16.3, == 7.16.*; python_version<'3.7'",
"protobuf >= 3.15.0, < 3.21.0",
"grpcio >= 1.35.0",
"p4runtime == 1.4.1",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.urls]
Homepage = "https://github.com/p4lang/p4runtime-shell"
[tool.setuptools]
packages = ["p4runtime_sh"]
license-files = ["LICENSES"]
include-package-data = false
[tool.setuptools_scm]
root = "./"
# use current tag and not next one
version_scheme = "post-release"