File: setup.py

package info (click to toggle)
pymetno 0.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: python: 376; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 718 bytes parent folder | download
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'
        ]
)