1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
from setuptools import setup
setup(
name = 'PyMetno',
packages = ['metno'],
install_requires=['xmltodict', "aiohttp>=3.0.6", "async_timeout>=3.0.0"],
version = '0.13.0',
description = 'A library to communicate with the met.no api',
author='Daniel Hjelseth Høyer',
url='https://github.com/Danielhiversen/pyMetno/',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Home Automation',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
|