weac 2.6.0__tar.gz → 2.6.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 (32) hide show
  1. {weac-2.6.0 → weac-2.6.1}/CITATION.cff +1 -1
  2. {weac-2.6.0 → weac-2.6.1}/PKG-INFO +10 -7
  3. weac-2.6.1/pyproject.toml +72 -0
  4. weac-2.6.1/setup.cfg +4 -0
  5. {weac-2.6.0 → weac-2.6.1}/weac/__init__.py +1 -1
  6. {weac-2.6.0 → weac-2.6.1}/weac/mixins.py +426 -427
  7. {weac-2.6.0 → weac-2.6.1}/weac/tools.py +80 -66
  8. weac-2.6.1/weac.egg-info/PKG-INFO +353 -0
  9. {weac-2.6.0/build → weac-2.6.1}/weac.egg-info/SOURCES.txt +6 -2
  10. weac-2.6.1/weac.egg-info/dependency_links.txt +1 -0
  11. weac-2.6.1/weac.egg-info/requires.txt +11 -0
  12. weac-2.6.1/weac.egg-info/top_level.txt +1 -0
  13. weac-2.6.0/pyproject.toml +0 -9
  14. weac-2.6.0/setup.cfg +0 -45
  15. {weac-2.6.0 → weac-2.6.1}/LICENSE +0 -0
  16. {weac-2.6.0 → weac-2.6.1}/MANIFEST.in +0 -0
  17. {weac-2.6.0 → weac-2.6.1}/README.md +0 -0
  18. {weac-2.6.0 → weac-2.6.1}/img/bc.png +0 -0
  19. {weac-2.6.0 → weac-2.6.1}/img/layering.png +0 -0
  20. {weac-2.6.0 → weac-2.6.1}/img/logo.png +0 -0
  21. {weac-2.6.0 → weac-2.6.1}/img/model.png +0 -0
  22. {weac-2.6.0 → weac-2.6.1}/img/profiles.png +0 -0
  23. {weac-2.6.0 → weac-2.6.1}/img/systems.png +0 -0
  24. {weac-2.6.0 → weac-2.6.1}/tests/test_eigensystem.py +0 -0
  25. {weac-2.6.0 → weac-2.6.1}/tests/test_layered.py +0 -0
  26. {weac-2.6.0 → weac-2.6.1}/tests/test_mixins.py +0 -0
  27. {weac-2.6.0 → weac-2.6.1}/tests/test_plot.py +0 -0
  28. {weac-2.6.0 → weac-2.6.1}/tests/test_tools.py +0 -0
  29. {weac-2.6.0 → weac-2.6.1}/weac/eigensystem.py +0 -0
  30. {weac-2.6.0 → weac-2.6.1}/weac/inverse.py +0 -0
  31. {weac-2.6.0 → weac-2.6.1}/weac/layered.py +0 -0
  32. {weac-2.6.0 → weac-2.6.1}/weac/plot.py +0 -0
@@ -8,7 +8,7 @@ authors:
8
8
  - family-names: "Weissgraeber"
9
9
  given-names: "Philipp"
10
10
  orcid: "https://orcid.org/0000-0001-8320-8672"
11
- version: 2.6.0
11
+ version: 2.6.1
12
12
  date-released: 2021-12-30
13
13
  identifiers:
14
14
  - description: Collection of archived snapshots of all versions of WEAC
@@ -1,11 +1,10 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: weac
3
- Version: 2.6.0
3
+ Version: 2.6.1
4
4
  Summary: Weak layer anticrack nucleation model
5
- Home-page: https://github.com/2phi/weac
6
- Author: 2phi GbR
7
- Author-email: mail@2phi.de
5
+ Author-email: 2phi GbR <mail@2phi.de>
8
6
  License: Proprietary
7
+ Project-URL: Homepage, https://github.com/2phi/weac
9
8
  Project-URL: Demo, https://github.com/2phi/weac/blob/main/demo/demo.ipynb
10
9
  Project-URL: Documentation, https://2phi.github.io/weac
11
10
  Project-URL: Issues and feature requests, https://github.com/2phi/weac/issues
@@ -16,11 +15,15 @@ Classifier: Topic :: Scientific/Engineering
16
15
  Requires-Python: >=3.10
17
16
  Description-Content-Type: text/markdown
18
17
  License-File: LICENSE
19
- Requires-Dist: matplotlib
20
- Requires-Dist: numpy
21
- Requires-Dist: scipy
18
+ Requires-Dist: matplotlib>=3.9.1
19
+ Requires-Dist: numpy>=2.0.1
20
+ Requires-Dist: scipy>=1.14.0
22
21
  Provides-Extra: interactive
23
22
  Requires-Dist: jupyter; extra == "interactive"
23
+ Requires-Dist: ipython>=8.12.3; extra == "interactive"
24
+ Provides-Extra: docs
25
+ Requires-Dist: sphinx; extra == "docs"
26
+ Requires-Dist: sphinxawesome-theme; extra == "docs"
24
27
 
25
28
  <!-- LOGO AND TITLE-->
26
29
  <!-- <p align="right"><img src="https://github.com/2phi/weac/raw/main/img/logo.png" alt="Logo" width="80" height="80"></p> -->
@@ -0,0 +1,72 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "weac"
7
+ version = "2.6.1"
8
+ authors = [
9
+ {name = "2phi GbR", email = "mail@2phi.de"},
10
+ ]
11
+ description = "Weak layer anticrack nucleation model"
12
+ readme = "README.md"
13
+ requires-python = ">=3.10"
14
+ license = {text = "Proprietary"}
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3",
17
+ "License :: Other/Proprietary License",
18
+ "Operating System :: OS Independent",
19
+ "Topic :: Scientific/Engineering",
20
+ ]
21
+ dependencies = [
22
+ "matplotlib>=3.9.1",
23
+ "numpy>=2.0.1",
24
+ "scipy>=1.14.0",
25
+ ]
26
+
27
+ [project.urls]
28
+ Homepage = "https://github.com/2phi/weac"
29
+ Demo = "https://github.com/2phi/weac/blob/main/demo/demo.ipynb"
30
+ Documentation = "https://2phi.github.io/weac"
31
+ "Issues and feature requests" = "https://github.com/2phi/weac/issues"
32
+
33
+ [project.optional-dependencies]
34
+ interactive = ["jupyter", "ipython>=8.12.3"]
35
+ docs = ["sphinx", "sphinxawesome-theme"]
36
+
37
+ [tool.setuptools]
38
+ packages = ["weac"]
39
+ package-data = {"*" = ["CITATION.cff"], "img" = ["*.png"]}
40
+
41
+ [tool.ruff]
42
+ ignore = ["E741"]
43
+
44
+ [tool.pylint.typecheck]
45
+ generated-members = "matplotlib.cm.*"
46
+
47
+ [tool.pycodestyle]
48
+ ignore = ["E121", "E123", "E126", "E211", "E226", "E24", "E704", "W503", "W504", "E741"]
49
+
50
+ [tool.bumpversion]
51
+ current_version = "2.6.1"
52
+ tag = true
53
+ commit = true
54
+
55
+ [[tool.bumpversion.files]]
56
+ filename = "pyproject.toml"
57
+
58
+ [[tool.bumpversion.files]]
59
+ filename = "CITATION.cff"
60
+
61
+ [[tool.bumpversion.files]]
62
+ filename = "weac/__init__.py"
63
+ search = "__version__ = '{current_version}'"
64
+ replace = "__version__ = '{new_version}'"
65
+
66
+ [[tool.bumpversion.files]]
67
+ filename = "demo/demo.ipynb"
68
+
69
+ [[tool.bumpversion.files]]
70
+ filename = "docs/sphinx/conf.py"
71
+ search = "release = '{current_version}'"
72
+ replace = "release = '{new_version}'"
weac-2.6.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -11,7 +11,7 @@ from weac.inverse import Inverse
11
11
  from weac import plot
12
12
 
13
13
  # Version
14
- __version__ = '2.6.0'
14
+ __version__ = '2.6.1'
15
15
 
16
16
  # Public names
17
17
  __all__ = [