-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 933 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
36
37
38
39
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.13.0",
"cmake>=3.18",
"ninja",
]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
build-verbosity = 1
[project]
name = "treeCoreset"
version = "0.1.2"
description = "C++ tree-based coreset library with Python bindings"
readme = "README.md"
authors = [
{name = "Fabrice Guibert", email = "fabrice.guibert@epfl.ch"}
]
license = {text = "GPL-3.0"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
"Programming Language :: C++",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"numpy",
]
[project.urls]
Homepage = "https://github.com/Shrecki/treeCoreset"
Repository = "https://github.com/Shrecki/treeCoreset.git"