-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "lsdo_function_spaces"
description = "A package for various functions and function spaces"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = ["CADDEE", "auto-differentation", "functions", "optimization", "B-splines"]
authors = [{name = "Andrew Fletcher", email = "afletcher168@gmail.com"}]
dependencies = [
'numpy',
'vedo',
'joblib',
'pandas',
'scipy',
'scikit-learn',
'csdl_alpha @ git+https://github.com/LSDOlab/CSDL_alpha.git',
'lsdo_b_splines_cython @ git+https://github.com/LSDOlab/lsdo_b_splines_cython.git'
]
dynamic = ['version']
[project.optional-dependencies]
test = ['pytest']
docs = [
'myst-nb',
'sphinx==5.3.0',
'sphinx_rtd_theme',
'sphinx-copybutton',
'sphinx-autoapi==2.1.0',
'astroid==2.15.5',
'numpydoc',
'gitpython',
'sphinxcontrib-collections @ git+https://github.com/anugrahjo/sphinx-collections.git',
'sphinxcontrib-bibtex',
]
[tool.setuptools.dynamic]
version = {attr = "lsdo_function_spaces.__version__"}
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
exclude = ["tutorials"]