pyVisualCrossing 1.0.1__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,26 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyVisualCrossing
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Gets the weather data from Visual Crossing
5
- Home-page: https://github.com/briis/pyVisualCrossing
6
- Author: briis
7
- Author-email: bjarne@briis.com
5
+ Author-email: briis <bjarne@briis.com>
8
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/briis/pyVisualCrossing
9
8
  Classifier: Programming Language :: Python :: 3
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Operating System :: OS Independent
12
11
  Classifier: Development Status :: 4 - Beta
12
+ Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: license
15
+ Requires-Dist: aiohttp
22
16
  Dynamic: license-file
23
- Dynamic: summary
24
17
 
25
18
  # Python Wrapper for Visual Crossing Weather API
26
19
 
@@ -18,7 +18,7 @@ from pyVisualCrossing.data import (
18
18
  from pyVisualCrossing.const import SUPPORTED_LANGUAGES
19
19
 
20
20
  __title__ = "pyVisualCrossing"
21
- __version__ = "1.0.1"
21
+ __version__ = "1.0.2"
22
22
  __author__ = "briis"
23
23
  __license__ = "MIT"
24
24
 
@@ -1,26 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyVisualCrossing
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Gets the weather data from Visual Crossing
5
- Home-page: https://github.com/briis/pyVisualCrossing
6
- Author: briis
7
- Author-email: bjarne@briis.com
5
+ Author-email: briis <bjarne@briis.com>
8
6
  License: MIT
7
+ Project-URL: Homepage, https://github.com/briis/pyVisualCrossing
9
8
  Classifier: Programming Language :: Python :: 3
10
9
  Classifier: License :: OSI Approved :: MIT License
11
10
  Classifier: Operating System :: OS Independent
12
11
  Classifier: Development Status :: 4 - Beta
12
+ Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Dynamic: author
16
- Dynamic: author-email
17
- Dynamic: classifier
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
21
- Dynamic: license
15
+ Requires-Dist: aiohttp
22
16
  Dynamic: license-file
23
- Dynamic: summary
24
17
 
25
18
  # Python Wrapper for Visual Crossing Weather API
26
19
 
@@ -1,6 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
- setup.py
3
+ pyproject.toml
4
4
  pyVisualCrossing/__init__.py
5
5
  pyVisualCrossing/api.py
6
6
  pyVisualCrossing/const.py
@@ -8,4 +8,5 @@ pyVisualCrossing/data.py
8
8
  pyVisualCrossing.egg-info/PKG-INFO
9
9
  pyVisualCrossing.egg-info/SOURCES.txt
10
10
  pyVisualCrossing.egg-info/dependency_links.txt
11
+ pyVisualCrossing.egg-info/requires.txt
11
12
  pyVisualCrossing.egg-info/top_level.txt
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "pyVisualCrossing"
7
+ dynamic = ["version"]
8
+ description = "Gets the weather data from Visual Crossing"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ authors = [
12
+ { name = "briis", email = "bjarne@briis.com" },
13
+ ]
14
+ requires-python = ">=3.10"
15
+ dependencies = [
16
+ "aiohttp",
17
+ ]
18
+ classifiers = [
19
+ "Programming Language :: Python :: 3",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Operating System :: OS Independent",
22
+ "Development Status :: 4 - Beta",
23
+ ]
24
+
25
+ [project.urls]
26
+ Homepage = "https://github.com/briis/pyVisualCrossing"
27
+
28
+ [tool.setuptools.dynamic]
29
+ version = { attr = "pyVisualCrossing.__version__" }
30
+
31
+ [tool.setuptools.packages.find]
32
+ include = ["pyVisualCrossing*"]
@@ -1,25 +0,0 @@
1
- """Package Setup."""
2
-
3
- import setuptools
4
-
5
- with open("README.md") as fh:
6
- long_description = fh.read()
7
-
8
- setuptools.setup(
9
- name="pyVisualCrossing",
10
- version="1.0.1",
11
- author="briis",
12
- author_email="bjarne@briis.com",
13
- description="Gets the weather data from Visual Crossing",
14
- license="MIT",
15
- long_description=long_description,
16
- long_description_content_type="text/markdown",
17
- url="https://github.com/briis/pyVisualCrossing",
18
- packages=setuptools.find_packages(),
19
- classifiers=[
20
- "Programming Language :: Python :: 3",
21
- "License :: OSI Approved :: MIT License",
22
- "Operating System :: OS Independent",
23
- "Development Status :: 4 - Beta",
24
- ],
25
- )