File: setup.py

package info (click to toggle)
pyyardian 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 168; makefile: 6; sh: 2
file content (16 lines) | stat: -rw-r--r-- 604 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

from setuptools import setup, find_packages

setup(
    name="pyyardian",
    version="1.2.0",
    license="MIT",
    author="Marty Sun",
    author_email="marty.sun@aeonmatrix.com",
    description="A module for interacting with the Yardian irrigation controller",
    long_description=" Python module for interacting with the Yardian irrigation controller. This module communicates directly towards the IP address of the Yardian device.",
    long_description_content_type="text/markdown",
    url="https://github.com/h3l1o5/pyyardian",
    install_requires=["aiohttp"],
    packages=find_packages()
)