[build-system]
requires = [
"setuptools>=77.0.3",
"pybind11>=3.0.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "pypto"
version = "0.2.1"
authors = [
{ name = "PyPTO Team", email = "pto@cann.osinfra.cn" }
]
description = "A high-performance programming framework for tile-centric computing"
readme = { file = "README.md", content-type = "text/markdown" }
license = "LicenseRef-CANN-Open-Software-License-Agreement-Version-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
dependencies = [
]
keywords = ["python", "pto", "tile", "tile-centric"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Compilers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://gitcode.com/cann/pypto"
Repository = "https://gitcode.com/cann/pypto"
"Bug Tracker" = "https://gitcode.com/cann/pypto/issues"
[project.optional-dependencies]
dev = [
"setuptools>=77.0.3",
"pybind11>=3.0.1",
"pip",
"build",
"packaging",
"pytest",
"pytest-forked",
"pytest-xdist",
]
tests = [
"pytest",
"pytest-forked",
"pytest-xdist",
]
[tool.setuptools]
package-dir = {"" = "python"}
packages.find.where = ["python", ]
packages.find.include = [
"pypto",
"pypto.op",
"pypto.include.tilefwk",
"pypto.lib",
"pypto.lib.configs",
"pypto.lib.include.mock",
"pypto.lib.include.tilefwk",
"pypto.lib.include.tileop",
"pypto.lib.include.tileop.arch32",
"pypto.lib.include.tileop.arch32.dynamic",
"pypto.lib.include.tileop.cube",
"pypto.lib.include.tileop.vector",
"pypto.lib.include.tileop.utils",
"pypto.lib.cmake.PTO_Framework",
]
include-package-data = true
package-data = { "pypto" = ["lib/**/*", "include/**/*"] }
zip-safe = false