-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 846 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 846 Bytes
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
[build-system]
requires = [
"scikit-build-core>=0.11.5",
"cmake>=3.27",
"ninja",
"conan>=2.0"
]
build-backend = "scikit_build_core"
[project]
name = "smollnet"
version = "0.0.1"
description = "SmollNet is a small deep learning library written in pure CUDA/C++"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{name = "Jakub Domagala", email = "domagala.jacob@gmail.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
]
dependencies = [
"pybind11>=2.11.0"
]
[project.urls]
Repository = "https://github.com/JacobDomagala/SmollNet"
Issues = "https://github.com/JacobDomagala/SmollNet/issues"
[tool.setuptools.packages.find]
where = ["python"]