-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.73 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8"]
[project]
authors = [
{"name" = "S. John Pennycook", "email" = "john.pennycook@intel.com"},
]
description = "Code Base Investigator"
dynamic = ["version", "readme"]
keywords = ["performance", "portability", "productivity"]
name = "codebasin"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
]
dependencies = [
"numpy==1.26.0",
"matplotlib==3.8.2",
"pathspec==0.12.1",
"pyyaml==6.0.1",
"scipy==1.12.0",
"jsonschema==4.21.1",
"tabulate==0.9.0",
"tqdm==4.66.5",
]
[project.scripts]
codebasin = "codebasin:__main__.main"
cbi-cov = "codebasin.coverage:__main__.main"
cbi-tree = "codebasin:tree.main"
[project.urls]
"Github" = "https://www.github.com/intel/code-base-investigator"
"Issues" = "https://www.github.com/intel/code-base-investigator/issues"
"Pull requests" = "https://www.github.com/intel/code-base-investigator/pulls"
[project.optional-dependencies]
dev = [
"sphinx",
"pre-commit",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["codebasin*"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
[tool.setuptools_scm]
# Deliberately empty to enable setuptools-scm
[tool.coverage.run]
command_line = "-m unittest"
source = ["codebasin"]
[tool.coverage.report]
show_missing = true