Skip to content

Commit 9e70fb0

Browse files
committed
Add classifiers/keywords for PyPi, fix issue finding packages
1 parent 8cafdeb commit 9e70fb0

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

setup.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,24 @@
1414
long_description=readme,
1515
long_description_content_type="text/markdown",
1616
url="https://github.com/gsornsen/pyopenweather",
17-
packages=find_packages('weather'),
18-
package_dir={"": "pyopenweather"},
17+
packages=find_packages(),
18+
# package_dir={"": "pyopenweather"},
1919
install_requires=[
2020
"requests-async>=0.6.2"
2121
],
2222
python_requires=">=3.7",
23+
classifiers=[
24+
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python",
26+
"Programming Language :: Python :: 3.7",
27+
"Programming Language :: Python :: 3.8",
28+
"Programming Language :: Python :: 3.9",
29+
"Natural Language :: English",
30+
"Operating System :: OS Independent",
31+
"Development Status :: 5 - Production/Stable",
32+
"Intended Audience :: Developers",
33+
"Topic :: Software Development :: Libraries"],
34+
keywords="openweathermap libary web api wrapper client wind temperature humidity",
2335
include_package_data=True,
2436
platforms="Posix; MacOS X; Windows"
2537
)

0 commit comments

Comments
 (0)