dashcode 1.0.0__tar.gz → 1.0.1__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,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
+ Home-page: https://github.com/ISviterI/dashcode
5
6
  Author: IWiterI
6
7
  Classifier: Programming Language :: Python :: 3
7
8
  Classifier: License :: OSI Approved :: MIT License
@@ -12,6 +13,7 @@ Dynamic: author
12
13
  Dynamic: classifier
13
14
  Dynamic: description
14
15
  Dynamic: description-content-type
16
+ Dynamic: home-page
15
17
  Dynamic: requires-python
16
18
  Dynamic: summary
17
19
 
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashcode
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A library for Geometry Dash level generation using .gmd files
5
+ Home-page: https://github.com/ISviterI/dashcode
5
6
  Author: IWiterI
6
7
  Classifier: Programming Language :: Python :: 3
7
8
  Classifier: License :: OSI Approved :: MIT License
@@ -12,6 +13,7 @@ Dynamic: author
12
13
  Dynamic: classifier
13
14
  Dynamic: description
14
15
  Dynamic: description-content-type
16
+ Dynamic: home-page
15
17
  Dynamic: requires-python
16
18
  Dynamic: summary
17
19
 
@@ -1,7 +1,6 @@
1
1
  from setuptools import setup, find_packages
2
2
  import os
3
3
 
4
- # Считываем описание из README.md
5
4
  long_description = ""
6
5
  if os.path.exists("README.md"):
7
6
  with open("README.md", "r", encoding="utf-8") as f:
@@ -9,13 +8,14 @@ if os.path.exists("README.md"):
9
8
 
10
9
  setup(
11
10
  name="dashcode",
12
- version="1.0.0",
11
+ version="1.0.1",
13
12
  packages=find_packages(),
14
13
  author="IWiterI",
15
14
  description="A library for Geometry Dash level generation using .gmd files",
16
15
  long_description=long_description,
17
16
  long_description_content_type="text/markdown",
18
17
  python_requires=">=3.6",
18
+ url="https://github.com/ISviterI/dashcode",
19
19
  classifiers=[
20
20
  "Programming Language :: Python :: 3",
21
21
  "License :: OSI Approved :: MIT License",
File without changes
File without changes
File without changes
File without changes