invrs-opt 0.12.0__tar.gz → 0.12.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {invrs_opt-0.12.0/src/invrs_opt.egg-info → invrs_opt-0.12.1}/PKG-INFO +4 -25
  2. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/README.md +2 -2
  3. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/pyproject.toml +2 -2
  4. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/__init__.py +1 -1
  5. {invrs_opt-0.12.0 → invrs_opt-0.12.1/src/invrs_opt.egg-info}/PKG-INFO +4 -25
  6. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/LICENSE +0 -0
  7. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/setup.cfg +0 -0
  8. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/experimental/__init__.py +0 -0
  9. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/experimental/client.py +0 -0
  10. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/experimental/labels.py +0 -0
  11. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/optimizers/__init__.py +0 -0
  12. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/optimizers/base.py +0 -0
  13. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/optimizers/lbfgsb.py +0 -0
  14. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/optimizers/wrapped_optax.py +0 -0
  15. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/__init__.py +0 -0
  16. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/base.py +0 -0
  17. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/filter_project.py +0 -0
  18. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/gaussian_levelset.py +0 -0
  19. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/pixel.py +0 -0
  20. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/parameterization/transforms.py +0 -0
  21. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt/py.typed +0 -0
  22. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt.egg-info/SOURCES.txt +0 -0
  23. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt.egg-info/dependency_links.txt +0 -0
  24. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt.egg-info/requires.txt +0 -0
  25. {invrs_opt-0.12.0 → invrs_opt-0.12.1}/src/invrs_opt.egg-info/top_level.txt +0 -0
@@ -1,31 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invrs_opt
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Summary: Algorithms for inverse design
5
5
  Author-email: "Martin F. Schubert" <mfschubert@gmail.com>
6
6
  Maintainer-email: "Martin F. Schubert" <mfschubert@gmail.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2025 invrs.io LLC
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
7
+ License-Expression: MIT
29
8
  Keywords: topology,optimization,jax,inverse design
30
9
  Requires-Python: >=3.7
31
10
  Description-Content-Type: text/markdown
@@ -51,8 +30,8 @@ Requires-Dist: pre-commit; extra == "dev"
51
30
  Dynamic: license-file
52
31
 
53
32
  # invrs-opt - Optimization algorithms for inverse design
54
- ![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)
55
- ![PyPI version](https://img.shields.io/pypi/v/invrs-opt)
33
+ [![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)](https://github.com/invrs-io/opt/actions)
34
+ [![PyPI version](https://img.shields.io/pypi/v/invrs-opt)](https://pypi.org/project/invrs-opt/)
56
35
 
57
36
  ## Overview
58
37
 
@@ -1,6 +1,6 @@
1
1
  # invrs-opt - Optimization algorithms for inverse design
2
- ![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)
3
- ![PyPI version](https://img.shields.io/pypi/v/invrs-opt)
2
+ [![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)](https://github.com/invrs-io/opt/actions)
3
+ [![PyPI version](https://img.shields.io/pypi/v/invrs-opt)](https://pypi.org/project/invrs-opt/)
4
4
 
5
5
  ## Overview
6
6
 
@@ -1,12 +1,12 @@
1
1
  [project]
2
2
 
3
3
  name = "invrs_opt"
4
- version = "v0.12.0"
4
+ version = "v0.12.1"
5
5
  description = "Algorithms for inverse design"
6
6
  keywords = ["topology", "optimization", "jax", "inverse design"]
7
7
  readme = "README.md"
8
8
  requires-python = ">=3.7"
9
- license = {file = "LICENSE"}
9
+ license = "MIT"
10
10
 
11
11
  authors = [
12
12
  {name = "Martin F. Schubert", email = "mfschubert@gmail.com"},
@@ -3,7 +3,7 @@
3
3
  Copyright (c) 2025 invrs.io LLC
4
4
  """
5
5
 
6
- __version__ = "v0.12.0"
6
+ __version__ = "v0.12.1"
7
7
  __author__ = "Martin F. Schubert <mfschubert@gmail.com>"
8
8
 
9
9
  from invrs_opt import parameterization as parameterization
@@ -1,31 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: invrs_opt
3
- Version: 0.12.0
3
+ Version: 0.12.1
4
4
  Summary: Algorithms for inverse design
5
5
  Author-email: "Martin F. Schubert" <mfschubert@gmail.com>
6
6
  Maintainer-email: "Martin F. Schubert" <mfschubert@gmail.com>
7
- License: MIT License
8
-
9
- Copyright (c) 2025 invrs.io LLC
10
-
11
- Permission is hereby granted, free of charge, to any person obtaining a copy
12
- of this software and associated documentation files (the "Software"), to deal
13
- in the Software without restriction, including without limitation the rights
14
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
- copies of the Software, and to permit persons to whom the Software is
16
- furnished to do so, subject to the following conditions:
17
-
18
- The above copyright notice and this permission notice shall be included in all
19
- copies or substantial portions of the Software.
20
-
21
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
- SOFTWARE.
28
-
7
+ License-Expression: MIT
29
8
  Keywords: topology,optimization,jax,inverse design
30
9
  Requires-Python: >=3.7
31
10
  Description-Content-Type: text/markdown
@@ -51,8 +30,8 @@ Requires-Dist: pre-commit; extra == "dev"
51
30
  Dynamic: license-file
52
31
 
53
32
  # invrs-opt - Optimization algorithms for inverse design
54
- ![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)
55
- ![PyPI version](https://img.shields.io/pypi/v/invrs-opt)
33
+ [![Continuous integration](https://github.com/invrs-io/opt/actions/workflows/build-ci.yml/badge.svg)](https://github.com/invrs-io/opt/actions)
34
+ [![PyPI version](https://img.shields.io/pypi/v/invrs-opt)](https://pypi.org/project/invrs-opt/)
56
35
 
57
36
  ## Overview
58
37
 
File without changes
File without changes