docstring-generator-ext 0.0.31__tar.gz → 1.0.1.post2__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 (18) hide show
  1. docstring_generator_ext-1.0.1.post2/MANIFEST.in +25 -0
  2. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/PKG-INFO +17 -12
  3. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/README.md +10 -1
  4. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/docstring_generator_ext.egg-info/PKG-INFO +18 -13
  5. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/docstring_generator_ext.egg-info/SOURCES.txt +3 -2
  6. docstring_generator_ext-1.0.1.post2/docstring_generator_ext.egg-info/requires.txt +1 -0
  7. docstring_generator_ext-1.0.1.post2/pyproject.toml +45 -0
  8. docstring_generator_ext-1.0.1.post2/setup.py +21 -0
  9. docstring_generator_ext-1.0.1.post2/src/docstringFormat.cpp +956 -0
  10. docstring_generator_ext-1.0.1.post2/src/docstringFormat.hpp +102 -0
  11. docstring_generator_ext-0.0.31/docstring_generator_ext.egg-info/not-zip-safe +0 -1
  12. docstring_generator_ext-0.0.31/docstring_generator_ext.egg-info/requires.txt +0 -3
  13. docstring_generator_ext-0.0.31/pyproject.toml +0 -3
  14. docstring_generator_ext-0.0.31/setup.py +0 -55
  15. docstring_generator_ext-0.0.31/src/docstringFormat.cpp +0 -1142
  16. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/docstring_generator_ext.egg-info/dependency_links.txt +0 -0
  17. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/docstring_generator_ext.egg-info/top_level.txt +0 -0
  18. {docstring_generator_ext-0.0.31 → docstring_generator_ext-1.0.1.post2}/setup.cfg +0 -0
@@ -0,0 +1,25 @@
1
+ # What to include
2
+ include README.md
3
+ include pyproject.toml
4
+ include setup.py
5
+ include src/docstringFormat.cpp
6
+ include src/docstringFormat.hpp
7
+
8
+ # What to exclude
9
+ prune src/cmake-build-debug
10
+ prune src/CMakeFiles
11
+ prune src/extern
12
+ prune src/tests
13
+ prune dist
14
+ prune build
15
+ prune .venv
16
+ prune venv
17
+ prune .idea
18
+ prune .github
19
+ prune .git
20
+
21
+ # Safety nets
22
+ global-exclude *.o *.so *.dylib *.dll *.pyc *.pyo
23
+ global-exclude __pycache__
24
+ global-exclude .DS_Store
25
+ global-exclude *.egg-info
@@ -1,26 +1,31 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: docstring_generator_ext
3
- Version: 0.0.31
4
- Summary: Generate Docstrings with type-hint information
5
- Home-page: https://github.com/FelixTheC/docstring_generator
6
- Author: FelixTheC
7
- Author-email: fberndt87@gmail.com
8
- License: MIT
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: License :: OSI Approved :: MIT License
3
+ Version: 1.0.1.post2
4
+ Summary: Generate Docstrings with type-hint information.
5
+ Author-email: FelixTheC <fberndt87@gmail.com>
6
+ Classifier: Environment :: Console
11
7
  Classifier: Programming Language :: Python :: 3
12
8
  Classifier: Topic :: Utilities
13
9
  Classifier: Topic :: Software Development :: Documentation
14
10
  Classifier: Typing :: Typed
15
- Requires-Python: <3.12
11
+ Requires-Python: >=3.13
16
12
  Description-Content-Type: text/markdown
17
- Provides-Extra: test
13
+ Requires-Dist: pybind11>=3.0.4
14
+
15
+ ## How to build
16
+
17
+ - install python build via `pip install build`
18
+ - build the package via `python -m build --sdist`
19
+
20
+ ### Versioning
18
21
 
19
- #### Versioning
20
22
  - For the versions available, see the tags on this repository.
21
23
 
22
24
  ### Authors
25
+
23
26
  - Felix Eisenmenger
24
27
 
25
28
  ### License
29
+
26
30
  - This project is licensed under the MIT License - see the LICENSE.md file for details
31
+
@@ -1,8 +1,17 @@
1
- #### Versioning
1
+ ## How to build
2
+
3
+ - install python build via `pip install build`
4
+ - build the package via `python -m build --sdist`
5
+
6
+ ### Versioning
7
+
2
8
  - For the versions available, see the tags on this repository.
3
9
 
4
10
  ### Authors
11
+
5
12
  - Felix Eisenmenger
6
13
 
7
14
  ### License
15
+
8
16
  - This project is licensed under the MIT License - see the LICENSE.md file for details
17
+
@@ -1,26 +1,31 @@
1
- Metadata-Version: 2.1
2
- Name: docstring-generator-ext
3
- Version: 0.0.31
4
- Summary: Generate Docstrings with type-hint information
5
- Home-page: https://github.com/FelixTheC/docstring_generator
6
- Author: FelixTheC
7
- Author-email: fberndt87@gmail.com
8
- License: MIT
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: License :: OSI Approved :: MIT License
1
+ Metadata-Version: 2.4
2
+ Name: docstring_generator_ext
3
+ Version: 1.0.1.post2
4
+ Summary: Generate Docstrings with type-hint information.
5
+ Author-email: FelixTheC <fberndt87@gmail.com>
6
+ Classifier: Environment :: Console
11
7
  Classifier: Programming Language :: Python :: 3
12
8
  Classifier: Topic :: Utilities
13
9
  Classifier: Topic :: Software Development :: Documentation
14
10
  Classifier: Typing :: Typed
15
- Requires-Python: <3.12
11
+ Requires-Python: >=3.13
16
12
  Description-Content-Type: text/markdown
17
- Provides-Extra: test
13
+ Requires-Dist: pybind11>=3.0.4
14
+
15
+ ## How to build
16
+
17
+ - install python build via `pip install build`
18
+ - build the package via `python -m build --sdist`
19
+
20
+ ### Versioning
18
21
 
19
- #### Versioning
20
22
  - For the versions available, see the tags on this repository.
21
23
 
22
24
  ### Authors
25
+
23
26
  - Felix Eisenmenger
24
27
 
25
28
  ### License
29
+
26
30
  - This project is licensed under the MIT License - see the LICENSE.md file for details
31
+
@@ -1,10 +1,11 @@
1
+ MANIFEST.in
1
2
  README.md
2
3
  pyproject.toml
3
4
  setup.py
4
5
  docstring_generator_ext.egg-info/PKG-INFO
5
6
  docstring_generator_ext.egg-info/SOURCES.txt
6
7
  docstring_generator_ext.egg-info/dependency_links.txt
7
- docstring_generator_ext.egg-info/not-zip-safe
8
8
  docstring_generator_ext.egg-info/requires.txt
9
9
  docstring_generator_ext.egg-info/top_level.txt
10
- src/docstringFormat.cpp
10
+ src/docstringFormat.cpp
11
+ src/docstringFormat.hpp
@@ -0,0 +1,45 @@
1
+ [project]
2
+ name = "docstring_generator_ext"
3
+ version = "1.0.1.post2"
4
+ description = "Generate Docstrings with type-hint information."
5
+ authors = [
6
+ { name = "FelixTheC", email = "fberndt87@gmail.com" },
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.13"
10
+
11
+ classifiers=[
12
+
13
+ "Environment :: Console",
14
+ "Programming Language :: Python :: 3",
15
+ "Topic :: Utilities",
16
+ "Topic :: Software Development :: Documentation",
17
+ "Typing :: Typed",
18
+ ]
19
+
20
+ dependencies = [
21
+ "pybind11>=3.0.4"
22
+ ]
23
+
24
+ [build-system]
25
+ requires = ["setuptools>=42", "pybind11>=3.0.4"]
26
+ build-backend = "setuptools.build_meta"
27
+
28
+ [tool.setuptools]
29
+ py-modules = []
30
+ packages = []
31
+ include-package-data = false
32
+
33
+ [tool.cibuildwheel]
34
+ build = "cp313-* cp314-*"
35
+ skip = "pp* *musllinux*"
36
+ test-skip = "*"
37
+
38
+ [tool.cibuildwheel.linux]
39
+ archs = ["x86_64"]
40
+
41
+ [tool.cibuildwheel.macos]
42
+ archs = ["x86_64", "arm64"]
43
+
44
+ [tool.cibuildwheel.windows]
45
+ archs = ["AMD64"]
@@ -0,0 +1,21 @@
1
+ # Available at setup time due to pyproject.toml
2
+ from setuptools import setup
3
+ try:
4
+ from pybind11.setup_helpers import Pybind11Extension, build_ext
5
+ except ImportError:
6
+ from setuptools import Extension as Pybind11Extension
7
+ build_ext = None
8
+
9
+
10
+ ext_modules = [
11
+ Pybind11Extension(
12
+ "docstring_generator_ext",
13
+ ["src/docstringFormat.cpp"],
14
+ cxx_std=20,
15
+ ),
16
+ ]
17
+
18
+ setup(
19
+ ext_modules=ext_modules,
20
+ cmdclass={"build_ext": build_ext} if build_ext else {},
21
+ )