-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (39 loc) · 1.35 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
[project]
name = "BasisConvolution"
version = "0.1.4"
authors = [
{ name="Rene Winchenbach", email="[email protected]" },
]
maintainers = [
{ name="Rene Winchenbach", email="[email protected]" },
]
description = "Graph Neural Network Library for continuous convolutions using separable basis functions in pyTorch."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["sph","machineLearning","pytorch", "GNN"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"torch", "numpy", "ninja", "tqdm", "seaborn", "pandas", "matplotlib", "tomli", "msgpack", "msgpack-numpy", "portalocker", "h5py", "zstandard", "scipy", "scikit-learn", "scikit-image", "numba"
]
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/tum-pbs/SFBC"
Issues = "https://github.com/tum-pbs/SFBC/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # <-- this changed
[tool.setuptools.package-data]
"*" = ["*.*"] # <-- this changed