pyrig-dev 2.3.0__tar.gz → 2.4.0__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,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrig-dev
3
- Version: 2.3.0
3
+ Version: 2.4.0
4
4
  Summary: A package that handles the dev dependencies of pyrig.
5
+ Keywords: pyrig
5
6
  Author: Winipedia
6
7
  License-Expression: MIT
7
8
  License-File: LICENSE
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
8
11
  Classifier: Programming Language :: Python :: 3 :: Only
9
12
  Classifier: Programming Language :: Python :: 3.12
10
13
  Classifier: Programming Language :: Python :: 3.13
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pyrig-dev"
3
- version = "2.3.0"
3
+ version = "2.4.0"
4
4
  description = "A package that handles the dev dependencies of pyrig."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -20,6 +20,8 @@ license-files = [
20
20
  "LICENSE",
21
21
  ]
22
22
  classifiers = [
23
+ "Programming Language :: Python",
24
+ "Programming Language :: Python :: 3",
23
25
  "Programming Language :: Python :: 3 :: Only",
24
26
  "Programming Language :: Python :: 3.12",
25
27
  "Programming Language :: Python :: 3.13",
@@ -27,6 +29,9 @@ classifiers = [
27
29
  "Operating System :: OS Independent",
28
30
  "Typing :: Typed",
29
31
  ]
32
+ keywords = [
33
+ "pyrig",
34
+ ]
30
35
 
31
36
  [[project.authors]]
32
37
  name = "Winipedia"
@@ -16,7 +16,7 @@ from pyrig.core.introspection.packages import (
16
16
 
17
17
  if is_src_package(pyrig):
18
18
  from pyrig.rig.configs.base.config_file import ConfigDict
19
- from pyrig.rig.configs.pyproject import (
19
+ from pyrig_pypi.rig.configs.pyproject import (
20
20
  PyprojectConfigFile as BasePyprojectConfigFile,
21
21
  )
22
22
 
@@ -47,9 +47,8 @@ if is_src_package(pyrig):
47
47
  project = configs["project"]
48
48
 
49
49
  # add keywords
50
- keywords = project.get("keywords", [])
50
+ keywords = project["keywords"]
51
51
  keywords.extend(self.additional_keywords())
52
- project["keywords"] = keywords
53
52
 
54
53
  # add classifiers
55
54
  classifiers = project["classifiers"]
File without changes
File without changes