File: setup.py

package info (click to toggle)
python-devialet 1.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 557; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 997 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
22
23
24
25
26
27
28
29
30
from distutils.core import setup

setup(
    name='devialet',
    packages=['devialet'],
    version='1.5.7',
    license='MIT',
    description='Devialet API',
    long_description_content_type="text/markdown",
    long_description='Devialet API',
    author='fwestenberg',
    author_email='',
    url='https://github.com/fwestenberg/devialet',
    download_url='https://github.com/fwestenberg/devialet/releases/latest',
    keywords=['Devialet', 'Home-Assistant'],
    install_requires=[
        'aiohttp', 'async_upnp_client'
    ],
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'Topic :: Software Development :: Build Tools',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9'
    ],
)