-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 826 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
[project]
name = "vstat"
version = "1.0.0"
authors = [
{ name = "Bogdan Burlacu", email="bogdan.burlacu@pm.me" },
]
description = "vstat is a library for vectorized statistics"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.urls]
"Homepage" = "https://github.com/heal-research/vstat"
"Bug Tracker" = "https://github.com/heal-research/vstat/issues"
[build-system]
requires = [
"scikit-build>=0.16",
"setuptools>=42",
"cmake>=3.18",
]
build-backend = "setuptools.build_meta"