web-framework-api 1.0.0__tar.gz → 1.0.2__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,13 +1,13 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: web_framework_api
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: Python API for WebFramework
5
5
  Project-URL: Repository, http://github.com/LazyPanda07/WebFramework
6
6
  Project-URL: Wiki, http://github.com/LazyPanda07/WebFramework/wiki
7
7
  Author-email: LazyPanda07 <semengricenko@gmail.com>
8
8
  Maintainer-email: LazyPanda07 <semengricenko@gmail.com>
9
- License: MIT License
10
9
  Keywords: Web
10
+ Classifier: License :: OSI Approved :: MIT License
11
11
  Requires-Dist: multipledispatch
12
12
  Requires-Dist: requests
13
13
  Requires-Dist: tqdm
@@ -1,26 +1,28 @@
1
- [build-system]
2
- requires = ["hatchling"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "web_framework_api"
7
- description = "Python API for WebFramework"
8
- readme = "README.md"
9
- authors = [
10
- { name = "LazyPanda07", email = "semengricenko@gmail.com" }
11
- ]
12
- maintainers = [
13
- { name = "LazyPanda07", email = "semengricenko@gmail.com" }
14
- ]
15
- license = { text = "MIT License" }
16
- keywords = ["Web"]
17
- version = "1.0.0"
18
- dependencies = [
19
- "multipledispatch",
20
- "requests",
21
- "tqdm"
22
- ]
23
-
24
- [project.urls]
25
- Repository = "http://github.com/LazyPanda07/WebFramework"
26
- Wiki = "http://github.com/LazyPanda07/WebFramework/wiki"
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "web_framework_api"
7
+ description = "Python API for WebFramework"
8
+ readme = "README.md"
9
+ authors = [
10
+ { name = "LazyPanda07", email = "semengricenko@gmail.com" }
11
+ ]
12
+ maintainers = [
13
+ { name = "LazyPanda07", email = "semengricenko@gmail.com" }
14
+ ]
15
+ keywords = ["Web"]
16
+ version = "1.0.2"
17
+ dependencies = [
18
+ "multipledispatch",
19
+ "requests",
20
+ "tqdm"
21
+ ]
22
+ classifiers = [
23
+ "License :: OSI Approved :: MIT License"
24
+ ]
25
+
26
+ [project.urls]
27
+ Repository = "http://github.com/LazyPanda07/WebFramework"
28
+ Wiki = "http://github.com/LazyPanda07/WebFramework/wiki"
@@ -8,7 +8,7 @@ import requests
8
8
  from tqdm import tqdm
9
9
 
10
10
  WEB_FRAMEWORK_MAJOR_VERSION = "0"
11
- WEB_FRAMEWORK_MINOR_VERSION = "5"
11
+ WEB_FRAMEWORK_MINOR_VERSION = "7"
12
12
  WEB_FRAMEWORK_LIBRARIES_FILE_NAME = "libraries.zip"
13
13
  WEB_FRAMEWORK_DOWNLOAD_BLOCK_SIZE = 1024
14
14