abqpy2026 2026.10__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.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: abqpy2026
3
+ Version: 2026.10
4
+ Summary: Type hints for Abaqus/Python scripting
5
+ Author-email: WANG Hailin <hailin.wang@connect.polyu.hk>
6
+ Project-URL: Homepage, https://abqpy.com
7
+ Project-URL: GitHub, https://github.com/haiiliin/abqpy
8
+ Project-URL: Bug Tracker, https://github.com/haiiliin/abqpy/issues
9
+ Project-URL: Read the Docs, https://readthedocs.org/projects/abqpy
10
+ Project-URL: Documentation, https://haiiliin.github.io/abqpy/
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Operating System :: OS Independent
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: abqpy==2026.10
24
+ Provides-Extra: jupyter
25
+ Requires-Dist: ipynbname; extra == "jupyter"
26
+ Requires-Dist: nbconvert; extra == "jupyter"
27
+ Dynamic: requires-dist
28
+
29
+ # abqpy wrapper
30
+
31
+ A wrapper package for abqpy.
@@ -0,0 +1,3 @@
1
+ # abqpy wrapper
2
+
3
+ A wrapper package for abqpy.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: abqpy2026
3
+ Version: 2026.10
4
+ Summary: Type hints for Abaqus/Python scripting
5
+ Author-email: WANG Hailin <hailin.wang@connect.polyu.hk>
6
+ Project-URL: Homepage, https://abqpy.com
7
+ Project-URL: GitHub, https://github.com/haiiliin/abqpy
8
+ Project-URL: Bug Tracker, https://github.com/haiiliin/abqpy/issues
9
+ Project-URL: Read the Docs, https://readthedocs.org/projects/abqpy
10
+ Project-URL: Documentation, https://haiiliin.github.io/abqpy/
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Operating System :: OS Independent
21
+ Requires-Python: >=3.8
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: abqpy==2026.10
24
+ Provides-Extra: jupyter
25
+ Requires-Dist: ipynbname; extra == "jupyter"
26
+ Requires-Dist: nbconvert; extra == "jupyter"
27
+ Dynamic: requires-dist
28
+
29
+ # abqpy wrapper
30
+
31
+ A wrapper package for abqpy.
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ abqpy2026.egg-info/PKG-INFO
5
+ abqpy2026.egg-info/SOURCES.txt
6
+ abqpy2026.egg-info/dependency_links.txt
7
+ abqpy2026.egg-info/requires.txt
8
+ abqpy2026.egg-info/scm_file_list.json
9
+ abqpy2026.egg-info/scm_version.json
10
+ abqpy2026.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ abqpy==2026.10
2
+
3
+ [jupyter]
4
+ ipynbname
5
+ nbconvert
@@ -0,0 +1,7 @@
1
+ {
2
+ "files": [
3
+ "pyproject.toml",
4
+ "README.md",
5
+ "setup.py"
6
+ ]
7
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "2026.10",
3
+ "distance": 0,
4
+ "node": "gf8397bc116a1767aff882c42b7cc56cbd401c816",
5
+ "dirty": false,
6
+ "branch": "2026",
7
+ "node_date": "2026-07-20"
8
+ }
@@ -0,0 +1,44 @@
1
+ # pyproject.toml, for more information about configuration options, see
2
+ # https://setuptools.pypa.io/en/stable/userguide/pyproject_config.html
3
+
4
+ [build-system]
5
+ requires = ["setuptools", "setuptools_scm"]
6
+ build-backend = "setuptools.build_meta"
7
+
8
+ [project]
9
+ name = "abqpy2026"
10
+ authors = [
11
+ { name="WANG Hailin", email="hailin.wang@connect.polyu.hk" },
12
+ ]
13
+ description = "Type hints for Abaqus/Python scripting"
14
+ readme = "README.md"
15
+ dynamic = ["version", "dependencies"]
16
+ requires-python = ">=3.8"
17
+ classifiers = [
18
+ "Programming Language :: Python",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.8",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14",
27
+ "Operating System :: OS Independent",
28
+ ]
29
+
30
+ [project.optional-dependencies]
31
+ jupyter = [
32
+ "ipynbname",
33
+ "nbconvert",
34
+ ]
35
+
36
+ [project.urls]
37
+ "Homepage" = "https://abqpy.com"
38
+ "GitHub" = "https://github.com/haiiliin/abqpy"
39
+ "Bug Tracker" = "https://github.com/haiiliin/abqpy/issues"
40
+ "Read the Docs" = "https://readthedocs.org/projects/abqpy"
41
+ "Documentation" = "https://haiiliin.github.io/abqpy/"
42
+
43
+ [tool.setuptools_scm]
44
+ root = ".."
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,17 @@
1
+ import re
2
+
3
+ from setuptools import setup
4
+
5
+
6
+ def get_abqpy_version():
7
+ try:
8
+ import setuptools_scm
9
+
10
+ version = setuptools_scm.get_version(root="..", version_scheme="post-release")
11
+ major, minor, *_ = re.match(r"(\d+)\.(\d+)(.*)", version).groups()
12
+ return f"{major}.{minor}"
13
+ except (LookupError, ImportError):
14
+ return "2026.*"
15
+
16
+
17
+ setup(install_requires=[f"abqpy=={get_abqpy_version()}"])