File: setup.py

package info (click to toggle)
pyialarm 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: python: 237; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 768 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
from setuptools import setup

__version__ = '2.1.5'

setup(
    name='pyialarm',
    py_modules=["pyialarm"],
    version=__version__,
    description='A simple library to interface with iAlarm systems, built for use with Home-Assistant',
    author='Ludovico de Nittis',
    author_email='aasonykk+pyialarm@gmail.com',
    url='https://github.com/RyuzakiKK/pyialarm',
    download_url='https://github.com/RyuzakiKK/pyialarm',
    license='Apache 2.0',
    classifiers=[
      'Development Status :: 4 - Beta',
      'Intended Audience :: Developers',
      'Programming Language :: Python :: 3',
    ],
    keywords=['ialarm', 'antifurtocasa365', 'alarm'],
    packages=['pyialarm'],
    include_package_data=True,
    install_requires=['dicttoxml2', 'xmltodict'],
)