-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (40 loc) · 1.15 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools", "wheel", "torch"]
[project]
name = "sparse_accumulation"
version = "0.0.0"
description = "A package that contains significantly optimized CPU and GPU PyTorch extensions for the sparse accumulation operation"
authors = [
{name = "Sergey Pozdnyakov"},
{name = "Davide Tisi"},
{name = "Prashanth Kanduri"},
{name = "Filippo Bigi"},
{name = "Henrique Mendonça"},
{name = "Guillaume Fraux"},
]
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy",
"torch",
]
[project.optional-dependencies]
test = [
"pytest",
"os",
]
[project.urls]
homepage = "https://lab-cosmo.github.io/sparse_accumulation/"
documentation = "https://lab-cosmo.github.io/sparse_accumulation/"
repository = "https://github.com/lab-cosmo/sparse_accumulation"
[tool.setuptools.packages.find]
where = ["sparse_accumulation"]