-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.24 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
from setuptools import find_packages, setup
from pyopenweather import __version__
with open("README.md", "r") as f:
readme = f.read()
setup(
name="pyopenweather",
version=__version__,
license="MIT",
author="Gerald Sornsen",
author_email="[email protected]",
description="Python wrapper for OpenWeather API",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/gsornsen/pyopenweather",
packages=find_packages(),
# package_dir={"": "pyopenweather"},
install_requires=[
"requests-async>=0.6.2"
],
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries"],
keywords="openweathermap libary web api wrapper client wind temperature humidity",
include_package_data=True,
platforms="Posix; MacOS X; Windows"
)