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"
|