|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools", |
| 4 | + "wheel", |
| 5 | + "pybind11", |
| 6 | + "cibuildwheel", |
| 7 | + "scikit-build-core", |
| 8 | + "cmake", |
| 9 | + "ninja", |
| 10 | + "icecream", |
| 11 | + "build" |
| 12 | +] |
| 13 | +build-backend = "scikit_build_core.build" |
| 14 | + |
| 15 | +[tool.scikit-build] |
| 16 | + |
| 17 | +cmake.build-type = "Release" |
| 18 | + |
| 19 | +ninja.make-fallback = true |
| 20 | + |
| 21 | +sdist.exclude = [ |
| 22 | + "CMakeLists.txt", |
| 23 | + "cmake", |
| 24 | + "CMakeFiles", |
| 25 | + "build", |
| 26 | + "dist", |
| 27 | + "*.h", |
| 28 | + "*.c", |
| 29 | + "*.hpp", |
| 30 | + "*.cpp", |
| 31 | + "*.tcc", |
| 32 | + "*.cxx", |
| 33 | + "*.cu", |
| 34 | + "*.cuh", |
| 35 | + "*.cl", |
| 36 | + "*.so", |
| 37 | + "*.dylib", |
| 38 | + "*.dll", |
| 39 | + "*.doc", |
| 40 | + "*.tgz", |
| 41 | +] |
| 42 | + |
| 43 | +[project] |
| 44 | +name = "librapid" |
| 45 | +version = "$${{ INSERT_VERSION_NUMBER_HERE }}$$" |
| 46 | +description = "A high-performance library for arrays and numeric calculations" |
| 47 | +readme = "README.md" |
| 48 | +long_description = ["file: README.md"] |
| 49 | +long_description_content_type = "text/markdown" |
| 50 | +author = "Toby Davis" |
| 51 | +author_email = "[email protected]" |
| 52 | +license = { file = "LICENSE" } |
| 53 | +keywords = [ |
| 54 | + "librapid", |
| 55 | + "high-performance computing", |
| 56 | + "c++", |
| 57 | + "mathematics", |
| 58 | + "array", |
| 59 | + "matrix", |
| 60 | + "vector", |
| 61 | + "tensor", |
| 62 | + "gpu", |
| 63 | + "cuda", |
| 64 | + "openmp", |
| 65 | + "multithreading", |
| 66 | + "multicore", |
| 67 | + "parallel" |
| 68 | +] |
| 69 | +classifiers = [ |
| 70 | + "Development Status :: 4 - Beta", |
| 71 | + "Intended Audience :: Developers", |
| 72 | + "Intended Audience :: Science/Research", |
| 73 | + "License :: OSI Approved :: MIT License", |
| 74 | + "Operating System :: MacOS", |
| 75 | + "Operating System :: Microsoft :: Windows", |
| 76 | + "Operating System :: POSIX :: Linux", |
| 77 | + "Programming Language :: C++", |
| 78 | + "Programming Language :: Python :: 3", |
| 79 | + "Programming Language :: Python :: 3.6", |
| 80 | + "Programming Language :: Python :: 3.7", |
| 81 | + "Programming Language :: Python :: 3.8", |
| 82 | + "Programming Language :: Python :: 3.9", |
| 83 | + "Programming Language :: Python :: 3.10", |
| 84 | + "Programming Language :: Python :: 3.11", |
| 85 | + "Programming Language :: Python :: 3.12", |
| 86 | + "Topic :: Scientific/Engineering", |
| 87 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 88 | + "Topic :: Software Development", |
| 89 | + "Topic :: Software Development :: Libraries", |
| 90 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 91 | + "Topic :: Utilities", |
| 92 | +] |
| 93 | + |
| 94 | +[project.urls] |
| 95 | +homepage = "https://tobydavis.dev/librapid" |
| 96 | +documentation = "https://librapid.readthedocs.io/en/latest/" |
| 97 | +repository = "https://github.com/LibRapid/librapid" |
| 98 | +download = "https://pypi.org/project/librapid/#files" |
| 99 | +bug-tracker = "https://github.com/LibRapid/librapid/issues" |
| 100 | + |
0 commit comments