-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·46 lines (39 loc) · 1.47 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
"""
iceweather: Look up information about Icelandic weather (observations, forecasts,
human readable descriptive texts, etc.) using vedur.is xmlweather API.
Copyright (c) 2019-2023 Miðeind ehf.
Original author: Sveinbjorn Thordarson
BSD 3-clause License (see License.txt).
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="iceweather",
version="0.2.3",
author="Miðeind ehf.",
author_email="[email protected]",
license="BSD",
url="https://github.com/mideind/iceweather",
description="Look up Icelandic weather information (observations, forecasts, etc.)",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["requests"],
packages=["iceweather"],
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
zip_safe=True,
)