|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = [ |
| 4 | + # TODO: keep in sync with [project.dependencies] |
| 5 | + "wheel>=0.43", |
| 6 | + "build>=1.1", |
| 7 | + "setuptools>=63.0.0", |
| 8 | + "scikit-build>=0.17.0", |
| 9 | + "ninja>=1.11.1; platform_system!='Windows'", |
| 10 | + "cmake>=3.29.0", |
| 11 | + "cython>=3.0.10", |
| 12 | + "numpy >=1.24", |
| 13 | + # WARNING: check with doc how to upgrade |
| 14 | + "versioneer[toml]==0.29" |
| 15 | +] |
| 16 | + |
| 17 | +[project] |
| 18 | +authors = [{name = "Intel Corporation"}] |
| 19 | +classifiers = [ |
| 20 | + "Development Status :: 4 - Beta", |
| 21 | + "Intended Audience :: Science/Research", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "License :: OSI Approved :: Apache Software License", |
| 24 | + "Programming Language :: C", |
| 25 | + "Programming Language :: Pytho", |
| 26 | + "Programming Language :: Python :: 3", |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: Implementation :: CPython", |
| 31 | + "Topic :: Software Development", |
| 32 | + "Topic :: Scientific/Engineering", |
| 33 | + "Operating System :: Microsoft :: Windows", |
| 34 | + "Operating System :: POSIX :: Linux", |
| 35 | + "Operating System :: POSIX", |
| 36 | + "Operating System :: Unix" |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + # TODO: keep in sync with [build-system.requires] and /conda-recipe/meta.yaml |
| 40 | + # This restrictions are for dependabot, actual restrictions are set with |
| 41 | + # conda. |
| 42 | + # TODO: populate it during build process |
| 43 | + # TODO: do we have to set sycl runtime dependencies here |
| 44 | + # "dpcpp-cpp-rt>=0.59.0", |
| 45 | + # "intel-cmplr-lib-rt>=0.59.0" |
| 46 | + "numpy>=1.24.0" |
| 47 | +] |
| 48 | +description = "A lightweight Python wrapper for a subset of SYCL." |
| 49 | +dynamic = ["version"] |
| 50 | +keywords = [ |
| 51 | + "dpctl", |
| 52 | + "intel", |
| 53 | + "oneapi", |
| 54 | + "dpcpp" |
| 55 | +] |
| 56 | +license = {text = "Apache 2.0"} |
| 57 | +name = "dpctl" |
| 58 | +readme = {file = "README.md", content-type = "text/markdown"} |
| 59 | +requires-python = ">=3.9" |
| 60 | + |
| 61 | +[project.optional-dependencies] |
| 62 | +coverage = ["Cython", "pytest", "pytest-cov", "coverage", "tomli"] |
| 63 | +docs = [ |
| 64 | + "Cython", |
| 65 | + "sphinx", |
| 66 | + "sphinx_rtd_theme", |
| 67 | + "pydot", |
| 68 | + "graphviz", |
| 69 | + "sphinxcontrib-programoutput" |
| 70 | +] |
| 71 | + |
| 72 | +[project.urls] |
| 73 | +Changelog = "https://github.com/IntelPython/dpctl/blob/main/CHANGELOG.md" |
| 74 | +Documentation = "https://intelpython.github.io/dpctl/" |
| 75 | +Homepage = "https://github.com/IntelPython/dpctl" |
| 76 | +Issues = "https://github.com/IntelPython/dpctl/issues" |
| 77 | +Repository = "https://github.com/IntelPython/dpctl.git" |
| 78 | + |
1 | 79 | [tool.black] |
2 | 80 | exclude = "versioneer.py|dpctl/_version.py" |
3 | 81 | line-length = 80 |
|
0 commit comments