File: setup.py

package info (click to toggle)
python-aiopulse 0.4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 180 kB
  • sloc: python: 1,173; makefile: 4
file content (27 lines) | stat: -rw-r--r-- 981 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
"""Pip setup file for aiopulse library."""
from distutils.core import setup

setup(
    name="aiopulse",
    packages=["aiopulse"],
    version="0.4.5",
    license="apache-2.0",
    description="Python module for Rollease Acmeda Automate integration.",
    long_description=open('README.md').read(),
    long_description_content_type='text/markdown',
    author="Alan Murray",
    author_email="pypi@atmurray.net",
    url="https://github.com/atmurray/aiopulse",
    download_url="https://github.com/atmurray/aiopulse/archive/v0.4.4.tar.gz",
    keywords=["automation"],
    python_requires=">=3.4",
    install_requires=["async_timeout"],
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "Operating System :: OS Independent",
        "Topic :: Software Development :: Libraries :: Python Modules",
        "License :: OSI Approved :: Apache Software License",
        "Programming Language :: Python :: 3",
    ],
)