forked from null8626/python-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (30 loc) · 1.03 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
from setuptools import setup
setup(
name='python-weather',
packages=['python_weather'],
version='0.3.8',
license='MIT',
description='A free and asynchronous Weather API Wrapper.',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='null8626',
author_email='[email protected]',
url='https://github.com/null8626/python-weather',
download_url='https://github.com/null8626/python-weather/archive/0.3.8.tar.gz',
keywords=['Weather', 'API', 'Weather API', 'API Wrapper', 'Weather CLI', 'CLI'],
install_requires=[
'aiohttp',
'xmltodict'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
python_requires='>=3.7',
)