|
| 1 | +# Copyright (C) 2024 Intel Corporation |
| 2 | +# SPDX-License-Identifier: BSD-3-Clause |
| 3 | +[build-system] |
| 4 | +build-backend = "setuptools.build_meta" |
| 5 | +requires = ["setuptools >= 61.0"] |
| 6 | + |
| 7 | +[project] |
| 8 | +authors = [ |
| 9 | + {"name" = "S. John Pennycook", "email" = "john.pennycook@intel.com"}, |
| 10 | +] |
| 11 | +description = "Code Base Investigator" |
| 12 | +version = "1.2.0" |
| 13 | +dynamic = ["readme"] |
| 14 | +keywords = ["performance", "portability", "productivity"] |
| 15 | +name = "codebasin" |
| 16 | +requires-python = ">=3.9" |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 5 - Production/Stable", |
| 19 | + "Environment :: Console", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "License :: OSI Approved :: BSD License", |
| 22 | + "Programming Language :: Python", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.12", |
| 25 | + "Topic :: Software Development", |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "numpy==1.26.0", |
| 29 | + "matplotlib==3.8.2", |
| 30 | + "pathspec==0.12.1", |
| 31 | + "pyyaml==6.0.1", |
| 32 | + "scipy==1.12.0", |
| 33 | + "jsonschema==4.21.1", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +"Github" = "https://www.github.com/intel/code-base-investigator" |
| 38 | +"Issues" = "https://www.github.com/intel/code-base-investigator/issues" |
| 39 | +"Pull requests" = "https://www.github.com/intel/code-base-investigator/pulls" |
| 40 | + |
| 41 | +[project.optional-dependencies] |
| 42 | +dev = [ |
| 43 | + "sphinx", |
| 44 | + "pre-commit", |
| 45 | +] |
| 46 | + |
| 47 | +[tool.setuptools] |
| 48 | +# TODO this practice is deprecated and will need updating later |
| 49 | +script-files = ["bin/codebasin"] |
| 50 | +include-package-data = true |
| 51 | + |
| 52 | +[tool.setuptools.packages.find] |
| 53 | +where = ["."] |
| 54 | +include = ["codebasin*"] |
| 55 | + |
| 56 | +[tool.setuptools.dynamic] |
| 57 | +readme = {file = ["README.md"]} |
0 commit comments