dashcode 1.0.2__tar.gz → 1.0.4__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.
- {dashcode-1.0.2 → dashcode-1.0.4}/PKG-INFO +7 -3
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode.egg-info/PKG-INFO +7 -3
- {dashcode-1.0.2 → dashcode-1.0.4}/setup.py +7 -2
- {dashcode-1.0.2 → dashcode-1.0.4}/README.md +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode/__init__.py +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode/core.py +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode.egg-info/SOURCES.txt +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode.egg-info/dependency_links.txt +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/dashcode.egg-info/top_level.txt +0 -0
- {dashcode-1.0.2 → dashcode-1.0.4}/setup.cfg +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dashcode
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
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
|
|
9
|
+
Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,7 +16,8 @@ Dynamic: author
|
|
|
13
16
|
Dynamic: classifier
|
|
14
17
|
Dynamic: description
|
|
15
18
|
Dynamic: description-content-type
|
|
16
|
-
Dynamic:
|
|
19
|
+
Dynamic: keywords
|
|
20
|
+
Dynamic: project-url
|
|
17
21
|
Dynamic: requires-python
|
|
18
22
|
Dynamic: summary
|
|
19
23
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dashcode
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
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
|
|
9
|
+
Keywords: geometry dash,gd,level-generator,automation,2.2,python,dash,dashcode,code
|
|
7
10
|
Classifier: Programming Language :: Python :: 3
|
|
8
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
12
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,7 +16,8 @@ Dynamic: author
|
|
|
13
16
|
Dynamic: classifier
|
|
14
17
|
Dynamic: description
|
|
15
18
|
Dynamic: description-content-type
|
|
16
|
-
Dynamic:
|
|
19
|
+
Dynamic: keywords
|
|
20
|
+
Dynamic: project-url
|
|
17
21
|
Dynamic: requires-python
|
|
18
22
|
Dynamic: summary
|
|
19
23
|
|
|
@@ -8,17 +8,22 @@ if os.path.exists("README.md"):
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="dashcode",
|
|
11
|
-
version="1.0.
|
|
11
|
+
version="1.0.4",
|
|
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
|
-
|
|
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",
|
|
22
26
|
"Operating System :: OS Independent",
|
|
23
27
|
],
|
|
28
|
+
keywords='geometry dash, gd, level-generator, automation, 2.2, python, dash, dashcode, code',
|
|
24
29
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|