-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (63 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=69", "setuptools_scm[toml]>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geolipi"
dynamic = ["version"]
description = "A DSL for implicit geometric modeling with symbolic and torch execution backends."
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Aditya Ganeshan" }
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy>=1.23",
"sympy>=1.12",
"torch>=2.0",
"matplotlib>=3.7",
"plotly>=5.0",
"rustworkx>=0.13",
"scikit-fmm>=2023.4.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"build>=1.2.0",
]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"myst-parser>=2.0",
]
viz = [
"matplotlib>=3.7",
"plotly>=5.0",
]
blender = [
"bpy>=4.0",
]
[project.urls]
Homepage = "https://github.com/BardOfCodes/geolipi"
Repository = "https://github.com/BardOfCodes/geolipi"
Documentation = "https://bardofcodes.github.io/geolipi/index.html"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["geolipi*"]
[tool.setuptools.package-data]
geolipi = ["torch_compute/*.txt"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"