dashcode 1.0.1__tar.gz → 1.0.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,9 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
- Home-page: https://github.com/ISviterI/dashcode
6
5
  Author: IWiterI
6
+ Project-URL: Homepage, https://github.com/ISviterI/dashcode
7
+ Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
8
+ Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
7
9
  Classifier: Programming Language :: Python :: 3
8
10
  Classifier: License :: OSI Approved :: MIT License
9
11
  Classifier: Operating System :: OS Independent
@@ -13,7 +15,7 @@ Dynamic: author
13
15
  Dynamic: classifier
14
16
  Dynamic: description
15
17
  Dynamic: description-content-type
16
- Dynamic: home-page
18
+ Dynamic: project-url
17
19
  Dynamic: requires-python
18
20
  Dynamic: summary
19
21
 
@@ -13,4 +13,4 @@ Dashcode is a specialized Python library for the programmatic generation of Geom
13
13
  ## Installation
14
14
 
15
15
  ```bash
16
- pip install dashcode
16
+ pip install dashcode
@@ -50,6 +50,8 @@ class Dashcode:
50
50
  if self.params.get(param) is not None:
51
51
  pid = self.params[param]
52
52
  extraparams += f",{str(pid)},{value}"
53
+ else:
54
+ extraparams += f",{str(param)},{value}"
53
55
 
54
56
  oid = self.objects.get(obj, 1)
55
57
  if oid:
@@ -1,9 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
- Home-page: https://github.com/ISviterI/dashcode
6
5
  Author: IWiterI
6
+ Project-URL: Homepage, https://github.com/ISviterI/dashcode
7
+ Project-URL: Wiki, https://github.com/ISviterI/dashcode/wiki
8
+ Project-URL: Documentation, https://github.com/ISviterI/dashcode/wiki/Documentation
7
9
  Classifier: Programming Language :: Python :: 3
8
10
  Classifier: License :: OSI Approved :: MIT License
9
11
  Classifier: Operating System :: OS Independent
@@ -13,7 +15,7 @@ Dynamic: author
13
15
  Dynamic: classifier
14
16
  Dynamic: description
15
17
  Dynamic: description-content-type
16
- Dynamic: home-page
18
+ Dynamic: project-url
17
19
  Dynamic: requires-python
18
20
  Dynamic: summary
19
21
 
@@ -8,14 +8,18 @@ if os.path.exists("README.md"):
8
8
 
9
9
  setup(
10
10
  name="dashcode",
11
- version="1.0.1",
11
+ version="1.0.3",
12
12
  packages=find_packages(),
13
13
  author="IWiterI",
14
14
  description="A library for Geometry Dash level generation using .gmd files",
15
15
  long_description=long_description,
16
16
  long_description_content_type="text/markdown",
17
17
  python_requires=">=3.6",
18
- url="https://github.com/ISviterI/dashcode",
18
+ project_urls={
19
+ "Homepage": "https://github.com/ISviterI/dashcode",
20
+ "Wiki": "https://github.com/ISviterI/dashcode/wiki",
21
+ "Documentation": "https://github.com/ISviterI/dashcode/wiki/Documentation",
22
+ },
19
23
  classifiers=[
20
24
  "Programming Language :: Python :: 3",
21
25
  "License :: OSI Approved :: MIT License",
File without changes
File without changes