dynamic-characterization 0.0.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.
@@ -0,0 +1,11 @@
1
+ Copyright 2024 Timo Diepers
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4
+
5
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6
+
7
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+
9
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
+
11
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
File without changes
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.1
2
+ Name: dynamic_characterization
3
+ Version: 0.0.1
4
+ Summary: Collection of dynamic characterization functions for life cycle inventories
5
+ Author-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
6
+ Maintainer-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
7
+ Project-URL: source, https://github.com/TimoDiepers/dynamic_characterization
8
+ Project-URL: homepage, https://github.com/TimoDiepers/dynamic_characterization
9
+ Project-URL: tracker, https://github.com/TimoDiepers/dynamic_characterization/issues
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Requires-Python: >=3.9
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Provides-Extra: testing
24
+ Requires-Dist: dynamic_characterization; extra == "testing"
25
+ Requires-Dist: pytest; extra == "testing"
26
+ Requires-Dist: pytest-cov; extra == "testing"
27
+ Requires-Dist: python-coveralls; extra == "testing"
28
+ Provides-Extra: dev
29
+ Requires-Dist: build; extra == "dev"
30
+ Requires-Dist: pre-commit; extra == "dev"
31
+ Requires-Dist: pylint; extra == "dev"
32
+ Requires-Dist: pytest; extra == "dev"
33
+ Requires-Dist: pytest-cov; extra == "dev"
34
+ Requires-Dist: pytest-randomly; extra == "dev"
35
+ Requires-Dist: setuptools; extra == "dev"
36
+
37
+ # dynamic_characterization
38
+
39
+ [![PyPI](https://img.shields.io/pypi/v/dynamic_characterization.svg)][pypi status]
40
+ [![Status](https://img.shields.io/pypi/status/dynamic_characterization.svg)][pypi status]
41
+ [![Python Version](https://img.shields.io/pypi/pyversions/dynamic_characterization)][pypi status]
42
+ [![License](https://img.shields.io/pypi/l/dynamic_characterization)][license]
43
+
44
+ [![Read the documentation at https://dynamic_characterization.readthedocs.io/](https://img.shields.io/readthedocs/dynamic_characterization/latest.svg?label=Read%20the%20Docs)][read the docs]
45
+ [![Tests](https://github.com/TimoDiepers/dynamic_characterization/actions/workflows/python-test.yml/badge.svg)][tests]
46
+ [![Codecov](https://codecov.io/gh/TimoDiepers/dynamic_characterization/branch/main/graph/badge.svg)][codecov]
47
+
48
+ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
49
+ [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
50
+
51
+ [pypi status]: https://pypi.org/project/dynamic_characterization/
52
+ [read the docs]: https://dynamic_characterization.readthedocs.io/
53
+ [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
54
+ [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
55
+ [pre-commit]: https://github.com/pre-commit/pre-commit
56
+ [black]: https://github.com/psf/black
57
+
58
+ ## Installation
59
+
60
+ You can install _dynamic_characterization_ via [pip] from [PyPI]:
61
+
62
+ ```console
63
+ $ pip install dynamic_characterization
64
+ ```
65
+
66
+ ## Contributing
67
+
68
+ Contributions are very welcome.
69
+ To learn more, see the [Contributor Guide][Contributor Guide].
70
+
71
+ ## License
72
+
73
+ Distributed under the terms of the [BSD 3 Clause license][License],
74
+ _dynamic_characterization_ is free and open source software.
75
+
76
+ ## Issues
77
+
78
+ If you encounter any problems,
79
+ please [file an issue][Issue Tracker] along with a detailed description.
80
+
81
+
82
+ <!-- github-only -->
83
+
84
+ [command-line reference]: https://dynamic_characterization.readthedocs.io/en/latest/usage.html
85
+ [License]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/LICENSE
86
+ [Contributor Guide]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/CONTRIBUTING.md
87
+ [Issue Tracker]: https://github.com/TimoDiepers/dynamic_characterization/issues
88
+
89
+
90
+ ## Building the Documentation
91
+
92
+ You can build the documentation locally by installing the documentation Conda environment:
93
+
94
+ ```bash
95
+ conda env create -f docs/environment.yml
96
+ ```
97
+
98
+ activating the environment
99
+
100
+ ```bash
101
+ conda activate sphinx_dynamic_characterization
102
+ ```
103
+
104
+ and [running the build command](https://www.sphinx-doc.org/en/master/man/sphinx-build.html#sphinx-build):
105
+
106
+ ```bash
107
+ sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html
108
+ ```
@@ -0,0 +1,72 @@
1
+ # dynamic_characterization
2
+
3
+ [![PyPI](https://img.shields.io/pypi/v/dynamic_characterization.svg)][pypi status]
4
+ [![Status](https://img.shields.io/pypi/status/dynamic_characterization.svg)][pypi status]
5
+ [![Python Version](https://img.shields.io/pypi/pyversions/dynamic_characterization)][pypi status]
6
+ [![License](https://img.shields.io/pypi/l/dynamic_characterization)][license]
7
+
8
+ [![Read the documentation at https://dynamic_characterization.readthedocs.io/](https://img.shields.io/readthedocs/dynamic_characterization/latest.svg?label=Read%20the%20Docs)][read the docs]
9
+ [![Tests](https://github.com/TimoDiepers/dynamic_characterization/actions/workflows/python-test.yml/badge.svg)][tests]
10
+ [![Codecov](https://codecov.io/gh/TimoDiepers/dynamic_characterization/branch/main/graph/badge.svg)][codecov]
11
+
12
+ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
13
+ [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
14
+
15
+ [pypi status]: https://pypi.org/project/dynamic_characterization/
16
+ [read the docs]: https://dynamic_characterization.readthedocs.io/
17
+ [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
18
+ [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
19
+ [pre-commit]: https://github.com/pre-commit/pre-commit
20
+ [black]: https://github.com/psf/black
21
+
22
+ ## Installation
23
+
24
+ You can install _dynamic_characterization_ via [pip] from [PyPI]:
25
+
26
+ ```console
27
+ $ pip install dynamic_characterization
28
+ ```
29
+
30
+ ## Contributing
31
+
32
+ Contributions are very welcome.
33
+ To learn more, see the [Contributor Guide][Contributor Guide].
34
+
35
+ ## License
36
+
37
+ Distributed under the terms of the [BSD 3 Clause license][License],
38
+ _dynamic_characterization_ is free and open source software.
39
+
40
+ ## Issues
41
+
42
+ If you encounter any problems,
43
+ please [file an issue][Issue Tracker] along with a detailed description.
44
+
45
+
46
+ <!-- github-only -->
47
+
48
+ [command-line reference]: https://dynamic_characterization.readthedocs.io/en/latest/usage.html
49
+ [License]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/LICENSE
50
+ [Contributor Guide]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/CONTRIBUTING.md
51
+ [Issue Tracker]: https://github.com/TimoDiepers/dynamic_characterization/issues
52
+
53
+
54
+ ## Building the Documentation
55
+
56
+ You can build the documentation locally by installing the documentation Conda environment:
57
+
58
+ ```bash
59
+ conda env create -f docs/environment.yml
60
+ ```
61
+
62
+ activating the environment
63
+
64
+ ```bash
65
+ conda activate sphinx_dynamic_characterization
66
+ ```
67
+
68
+ and [running the build command](https://www.sphinx-doc.org/en/master/man/sphinx-build.html#sphinx-build):
69
+
70
+ ```bash
71
+ sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html
72
+ ```
@@ -0,0 +1,8 @@
1
+ """dynamic_characterization."""
2
+
3
+ __all__ = (
4
+ "__version__",
5
+ # Add functions and variables you want exposed in `dynamic_characterization.` namespace here
6
+ )
7
+
8
+ __version__ = "0.0.1"
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.1
2
+ Name: dynamic_characterization
3
+ Version: 0.0.1
4
+ Summary: Collection of dynamic characterization functions for life cycle inventories
5
+ Author-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
6
+ Maintainer-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
7
+ Project-URL: source, https://github.com/TimoDiepers/dynamic_characterization
8
+ Project-URL: homepage, https://github.com/TimoDiepers/dynamic_characterization
9
+ Project-URL: tracker, https://github.com/TimoDiepers/dynamic_characterization/issues
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Natural Language :: English
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Requires-Python: >=3.9
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Provides-Extra: testing
24
+ Requires-Dist: dynamic_characterization; extra == "testing"
25
+ Requires-Dist: pytest; extra == "testing"
26
+ Requires-Dist: pytest-cov; extra == "testing"
27
+ Requires-Dist: python-coveralls; extra == "testing"
28
+ Provides-Extra: dev
29
+ Requires-Dist: build; extra == "dev"
30
+ Requires-Dist: pre-commit; extra == "dev"
31
+ Requires-Dist: pylint; extra == "dev"
32
+ Requires-Dist: pytest; extra == "dev"
33
+ Requires-Dist: pytest-cov; extra == "dev"
34
+ Requires-Dist: pytest-randomly; extra == "dev"
35
+ Requires-Dist: setuptools; extra == "dev"
36
+
37
+ # dynamic_characterization
38
+
39
+ [![PyPI](https://img.shields.io/pypi/v/dynamic_characterization.svg)][pypi status]
40
+ [![Status](https://img.shields.io/pypi/status/dynamic_characterization.svg)][pypi status]
41
+ [![Python Version](https://img.shields.io/pypi/pyversions/dynamic_characterization)][pypi status]
42
+ [![License](https://img.shields.io/pypi/l/dynamic_characterization)][license]
43
+
44
+ [![Read the documentation at https://dynamic_characterization.readthedocs.io/](https://img.shields.io/readthedocs/dynamic_characterization/latest.svg?label=Read%20the%20Docs)][read the docs]
45
+ [![Tests](https://github.com/TimoDiepers/dynamic_characterization/actions/workflows/python-test.yml/badge.svg)][tests]
46
+ [![Codecov](https://codecov.io/gh/TimoDiepers/dynamic_characterization/branch/main/graph/badge.svg)][codecov]
47
+
48
+ [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
49
+ [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
50
+
51
+ [pypi status]: https://pypi.org/project/dynamic_characterization/
52
+ [read the docs]: https://dynamic_characterization.readthedocs.io/
53
+ [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
54
+ [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
55
+ [pre-commit]: https://github.com/pre-commit/pre-commit
56
+ [black]: https://github.com/psf/black
57
+
58
+ ## Installation
59
+
60
+ You can install _dynamic_characterization_ via [pip] from [PyPI]:
61
+
62
+ ```console
63
+ $ pip install dynamic_characterization
64
+ ```
65
+
66
+ ## Contributing
67
+
68
+ Contributions are very welcome.
69
+ To learn more, see the [Contributor Guide][Contributor Guide].
70
+
71
+ ## License
72
+
73
+ Distributed under the terms of the [BSD 3 Clause license][License],
74
+ _dynamic_characterization_ is free and open source software.
75
+
76
+ ## Issues
77
+
78
+ If you encounter any problems,
79
+ please [file an issue][Issue Tracker] along with a detailed description.
80
+
81
+
82
+ <!-- github-only -->
83
+
84
+ [command-line reference]: https://dynamic_characterization.readthedocs.io/en/latest/usage.html
85
+ [License]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/LICENSE
86
+ [Contributor Guide]: https://github.com/TimoDiepers/dynamic_characterization/blob/main/CONTRIBUTING.md
87
+ [Issue Tracker]: https://github.com/TimoDiepers/dynamic_characterization/issues
88
+
89
+
90
+ ## Building the Documentation
91
+
92
+ You can build the documentation locally by installing the documentation Conda environment:
93
+
94
+ ```bash
95
+ conda env create -f docs/environment.yml
96
+ ```
97
+
98
+ activating the environment
99
+
100
+ ```bash
101
+ conda activate sphinx_dynamic_characterization
102
+ ```
103
+
104
+ and [running the build command](https://www.sphinx-doc.org/en/master/man/sphinx-build.html#sphinx-build):
105
+
106
+ ```bash
107
+ sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html
108
+ ```
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ dynamic_characterization/__init__.py
6
+ dynamic_characterization.egg-info/PKG-INFO
7
+ dynamic_characterization.egg-info/SOURCES.txt
8
+ dynamic_characterization.egg-info/dependency_links.txt
9
+ dynamic_characterization.egg-info/requires.txt
10
+ dynamic_characterization.egg-info/top_level.txt
@@ -0,0 +1,15 @@
1
+
2
+ [dev]
3
+ build
4
+ pre-commit
5
+ pylint
6
+ pytest
7
+ pytest-cov
8
+ pytest-randomly
9
+ setuptools
10
+
11
+ [testing]
12
+ dynamic_characterization
13
+ pytest
14
+ pytest-cov
15
+ python-coveralls
@@ -0,0 +1 @@
1
+ dynamic_characterization
@@ -0,0 +1,101 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "dynamic_characterization"
7
+ authors = [
8
+ { name="Timo Diepers", email="timo.diepers@ltt.rwth-aachen.de" }
9
+ ]
10
+ maintainers = [
11
+ { name="Timo Diepers", email="timo.diepers@ltt.rwth-aachen.de" }
12
+ ]
13
+ description = "Collection of dynamic characterization functions for life cycle inventories"
14
+ readme = "README.md"
15
+ dynamic = ["version"]
16
+ # Add here all kinds of additional classifiers as defined under
17
+ # https://pypi.org/classifiers/
18
+ classifiers = [
19
+ "Development Status :: 4 - Beta",
20
+ "Programming Language :: Python",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Natural Language :: English",
27
+ "Operating System :: OS Independent",
28
+ "Topic :: Scientific/Engineering"
29
+ ]
30
+ requires-python = ">=3.9"
31
+ dependencies = [
32
+ # dependencies as strings with quotes, e.g. "foo"
33
+ # You can add version requirements like "foo>2.0"
34
+ ]
35
+
36
+ [project.urls]
37
+ source = "https://github.com/TimoDiepers/dynamic_characterization"
38
+ homepage = "https://github.com/TimoDiepers/dynamic_characterization"
39
+ tracker = "https://github.com/TimoDiepers/dynamic_characterization/issues"
40
+
41
+ [project.optional-dependencies]
42
+ # Getting recursive dependencies to work is a pain, this
43
+ # seems to work, at least for now
44
+ testing = [
45
+ "dynamic_characterization",
46
+ "pytest",
47
+ "pytest-cov",
48
+ "python-coveralls"
49
+ ]
50
+ dev = [
51
+ "build",
52
+ "pre-commit",
53
+ "pylint",
54
+ "pytest",
55
+ "pytest-cov",
56
+ "pytest-randomly",
57
+ "setuptools",
58
+ ]
59
+
60
+ [tool.setuptools]
61
+ license-files = ["LICENSE"]
62
+ include-package-data = true
63
+ packages = ["dynamic_characterization"]
64
+
65
+ [tool.setuptools.dynamic]
66
+ version = {attr = "dynamic_characterization.__version__"}
67
+
68
+ [tool.pytest.ini_options]
69
+ addopts = "--cov dynamic_characterization --cov-report term-missing --verbose"
70
+ norecursedirs = [
71
+ "dist",
72
+ "build",
73
+ ".tox"
74
+ ]
75
+ testpaths = ["tests/*.py"]
76
+
77
+ [tool.flake8]
78
+ # Some sane defaults for the code style checker flake8
79
+ max_line_length = 88
80
+ extend_ignore = ["E203", "W503"]
81
+ # ^ Black-compatible
82
+ # E203 and W503 have edge cases handled by black
83
+ exclude = [
84
+ ".tox",
85
+ "build",
86
+ "dist",
87
+ ".eggs",
88
+ "docs/conf.py",
89
+ ]
90
+
91
+ [tool.black]
92
+ line-length = 88
93
+
94
+ [tool.isort]
95
+ profile = "black"
96
+ line_length = 88
97
+ multi_line_output = 3
98
+ include_trailing_comma = true
99
+ force_grid_wrap = 0
100
+ use_parentheses = true
101
+ ensure_newline_before_comments = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+