Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
35 lines (30 loc) · 952 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 952 Bytes
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
# When modifying this file, consider adjusting contrib/setup.py for old distros
[project]
name = "osmopython"
description = "Osmocom testing scripts"
license = "AGPL-3.0-or-later"
dynamic = ["version"]
authors = [
{name = "Osmocom team", email = "openbsc@lists.osmocom.org"},
{name = "Katerina Barone-Adesi", email = "kat.obsc@gmail.com"},
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
script-files = [
"scripts/osmodumpdoc.py",
"scripts/osmotestvty.py",
"scripts/osmotestconfig.py",
"scripts/osmo_ctrl.py",
"scripts/osmo_rate_ctr2csv.py",
"scripts/osmo_trap2cgi.py",
"scripts/osmo_interact_vty.py",
"scripts/osmo_interact_ctrl.py",
"scripts/osmo_verify_transcript_vty.py",
"scripts/osmo_verify_transcript_ctrl.py",
]
[tool.setuptools.packages.find]
include = ["osmopy*"]
[tool.setuptools.dynamic]
version = {attr = "osmopy.__version__"}