-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.07 KB
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
[project]
name = "diffSPH"
version = "0.2.1"
authors = [
{ name="Rene Winchenbach", email="contact@fluids.dev" },
]
maintainers = [
{ name="Rene Winchenbach", email="contact@fluids.dev" },
]
description = "A Fully differentiable SPH Solver."
readme = "README.md"
keywords = ["sph","radius","pytorch"]
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 :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"torch", "numpy"
]
license = {file = "LICENSE"}
[project.urls]
Repository = "https://github.com/tum-pbs/diffSPH"
Issues = "https://github.com/tum-pbs/diffSPH"
[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