python-package-template-pypi 0.3.1__tar.gz → 0.3.3__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,10 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-package-template-pypi
3
- Version: 0.3.1
3
+ Version: 0.3.3
4
4
  Summary: Python package template configuration.
5
5
  Keywords: python,template,package,github,pypi
6
6
  Author: Daniel Mizsak
7
- Author-email: Daniel Mizsak <info@pythonvilag.hu>
7
+ Author-email: Daniel Mizsak <daniel@mizsak.com>
8
8
  License: MIT License
9
9
 
10
10
  Copyright (c) Daniel Mizsak
@@ -26,12 +26,11 @@ License: MIT License
26
26
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
27
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
28
  SOFTWARE.
29
- Classifier: License :: OSI Approved :: MIT License
30
29
  Classifier: Programming Language :: Python :: 3 :: Only
31
30
  Classifier: Programming Language :: Python :: 3.12
32
31
  Classifier: Programming Language :: Python :: 3.13
33
32
  Classifier: Programming Language :: Python :: 3.14
34
- Requires-Dist: numpy==2.4.2
33
+ Requires-Dist: numpy==2.4.4
35
34
  Requires-Python: >=3.12
36
35
  Project-URL: Repository, https://github.com/daniel-mizsak/python-package-template/
37
36
  Project-URL: Documentation, https://daniel-mizsak.github.io/python-package-template/
@@ -6,21 +6,20 @@
6
6
  # Project Metadata
7
7
  [project]
8
8
  name = "python-package-template-pypi" # Name has to be unique on pypi.
9
- version = "0.3.1"
9
+ version = "0.3.3" # Version set by GitHub release.
10
10
  description = "Python package template configuration."
11
11
  readme = "README.md"
12
12
  license = { file = "LICENSE" }
13
- authors = [{ name = "Daniel Mizsak", email = "info@pythonvilag.hu" }]
13
+ authors = [{ name = "Daniel Mizsak", email = "daniel@mizsak.com" }]
14
14
  keywords = ["python", "template", "package", "github", "pypi"]
15
15
  classifiers = [
16
- "License :: OSI Approved :: MIT License",
17
16
  "Programming Language :: Python :: 3 :: Only",
18
17
  "Programming Language :: Python :: 3.12",
19
18
  "Programming Language :: Python :: 3.13",
20
19
  "Programming Language :: Python :: 3.14",
21
20
  ]
22
21
  requires-python = ">=3.12"
23
- dependencies = ["numpy==2.4.2"]
22
+ dependencies = ["numpy==2.4.4"]
24
23
 
25
24
  [project.urls]
26
25
  Repository = "https://github.com/daniel-mizsak/python-package-template/"
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Python package template configuration.
3
3
 
4
- @author "Daniel Mizsak" <info@pythonvilag.hu>
4
+ @author "Daniel Mizsak" <daniel@mizsak.com>
5
5
  """
6
6
 
7
7
  from python_package_template.main import add_five, subtract_three
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main module of the package.
3
3
 
4
- @author "Daniel Mizsak" <info@pythonvilag.hu>
4
+ @author "Daniel Mizsak" <daniel@mizsak.com>
5
5
  """
6
6
 
7
7
  import numpy as np