dynamic-characterization 0.0.1__tar.gz → 0.0.1.dev0__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dynamic_characterization
3
- Version: 0.0.1
4
- Summary: Collection of dynamic characterization functions for life cycle inventories
3
+ Version: 0.0.1.dev0
4
+ Summary: Collection of dynamic characterization functions for life cycle inventories with temporal information
5
5
  Author-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
6
6
  Maintainer-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
7
7
  Project-URL: source, https://github.com/TimoDiepers/dynamic_characterization
@@ -49,7 +49,7 @@ Requires-Dist: setuptools; extra == "dev"
49
49
  [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
50
50
 
51
51
  [pypi status]: https://pypi.org/project/dynamic_characterization/
52
- [read the docs]: https://dynamic_characterization.readthedocs.io/
52
+ [read the docs]: https://dynamic-characterization.readthedocs.io/
53
53
  [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
54
54
  [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
55
55
  [pre-commit]: https://github.com/pre-commit/pre-commit
@@ -13,7 +13,7 @@
13
13
  [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
14
14
 
15
15
  [pypi status]: https://pypi.org/project/dynamic_characterization/
16
- [read the docs]: https://dynamic_characterization.readthedocs.io/
16
+ [read the docs]: https://dynamic-characterization.readthedocs.io/
17
17
  [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
18
18
  [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
19
19
  [pre-commit]: https://github.com/pre-commit/pre-commit
@@ -69,4 +69,4 @@ and [running the build command](https://www.sphinx-doc.org/en/master/man/sphinx-
69
69
 
70
70
  ```bash
71
71
  sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html
72
- ```
72
+ ```
@@ -0,0 +1,10 @@
1
+ """
2
+ Collection of dynamic characterization functions for life cycle inventories with temporal information.
3
+ """
4
+
5
+ __all__ = (
6
+ "__version__",
7
+ # Add functions and variables you want exposed in `dynamic_characterization.` namespace here
8
+ )
9
+
10
+ __version__ = "0.0.1dev0"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dynamic_characterization
3
- Version: 0.0.1
4
- Summary: Collection of dynamic characterization functions for life cycle inventories
3
+ Version: 0.0.1.dev0
4
+ Summary: Collection of dynamic characterization functions for life cycle inventories with temporal information
5
5
  Author-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
6
6
  Maintainer-email: Timo Diepers <timo.diepers@ltt.rwth-aachen.de>
7
7
  Project-URL: source, https://github.com/TimoDiepers/dynamic_characterization
@@ -49,7 +49,7 @@ Requires-Dist: setuptools; extra == "dev"
49
49
  [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]
50
50
 
51
51
  [pypi status]: https://pypi.org/project/dynamic_characterization/
52
- [read the docs]: https://dynamic_characterization.readthedocs.io/
52
+ [read the docs]: https://dynamic-characterization.readthedocs.io/
53
53
  [tests]: https://github.com/TimoDiepers/dynamic_characterization/actions?workflow=Tests
54
54
  [codecov]: https://app.codecov.io/gh/TimoDiepers/dynamic_characterization
55
55
  [pre-commit]: https://github.com/pre-commit/pre-commit
@@ -10,7 +10,7 @@ authors = [
10
10
  maintainers = [
11
11
  { name="Timo Diepers", email="timo.diepers@ltt.rwth-aachen.de" }
12
12
  ]
13
- description = "Collection of dynamic characterization functions for life cycle inventories"
13
+ description = "Collection of dynamic characterization functions for life cycle inventories with temporal information"
14
14
  readme = "README.md"
15
15
  dynamic = ["version"]
16
16
  # Add here all kinds of additional classifiers as defined under
@@ -1,8 +0,0 @@
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"