File: pyproject.toml

package info (click to toggle)
intel-cmt-cat 25.04-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,732 kB
  • sloc: ansic: 52,004; python: 11,324; makefile: 2,201; perl: 1,165; javascript: 37; sh: 23
file content (52 lines) | stat: -rw-r--r-- 1,320 bytes parent folder | download | duplicates (2)
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
[project]
name = "pqos"
version = "6.0.1"
description = "Python interface for Intel(R) RDT PQoS library"
authors = [
    { name = "Michal Aleksinski", email = "michalx.aleksinski@intel.com"},
    { name = "Wojciech Andralojc", email = "wojciechx.andralojc@intel.com"},
    { name = "Adrian Boczkowski", email = "adrianx.boczkowski@intel.com"},
    { name = "Khawar Abbasi", email = "khawar.abbasi@intel.com"}
]
maintainers = [
    { name = "Raghavan Kanagaraj", email = "raghavan.kanagaraj@intel.com"}
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.6"

classifiers = [
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.6",
    "License :: OSI Approved :: BSD License"
]

dependencies = []


[project.urls]
"Homepage" = "https://github.com/intel/intel-cmt-cat"
"Source Code" = "https://github.com/intel/intel-cmt-cat"
"Bug Tracker" = "https://github.com/intel/intel-cmt-cat/issues"

[project.optional-dependencies]
dev = [
    "bandit",
    "pylint ==2.17.0",
    "coverage",
    "caniusepython3"
]

[tool.setuptools]
packages = ["pqos"]
license-files = ["LICENSE"]
include-package-data = false


[build-system]
requires = [
    "setuptools>=61.0.0",
    "wheel"
]
build-backend = "setuptools.build_meta"