-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1.52 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
# noqa: D100
from pathlib import Path
import setuptools
# Read the README file content using pathlib and a context manager
long_description = Path("README.md").read_text(encoding="utf-8").strip()
setuptools.setup(name="ims_envista",
version="0.0.0",
long_description_content_type="text/markdown",
description="Israel Meteorological Service Envista API wrapper package",
long_description=long_description,
author="Guy Khmelnitsky",
author_email="[email protected]",
url="https://github.com/GuyKh/py-ims-envista",
packages=setuptools.find_packages(),
python_requires=">=3.10",
install_requires=["urllib3","loguru", "aiohttp", "async_timeout"],
license="MIT License",
zip_safe=False,
keywords=["ims","weatheril","Israel Meteorological Service","Meteorological Service","weather"],
classifiers=[ "Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Operating System :: OS Independent"])