File: setup.py

package info (click to toggle)
aioaseko 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 431; makefile: 6
file content (38 lines) | stat: -rw-r--r-- 1,450 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
31
32
33
34
35
36
37
38
from setuptools import setup

with open("README.md", "r", encoding="utf-8") as f:
    long_description = f.read()

setup(
    name="aioaseko",
    version="1.0.0",
    author="Milan Meulemans",
    author_email="milan.meulemans@live.be",
    description="Async Python package for the Aseko Pool Live API",
    keywords="aseko pool live api asin aqua",
    license="LGPLv3+",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/milanmeu/aioaseko",
    project_urls={
        "Homepage": "https://github.com/milanmeu/aioaseko",
        "Bug Tracker": "https://github.com/milanmeu/aioaseko/issues",
        "Source Code": "https://github.com/milanmeu/aioaseko/tree/main/aioaseko",
        "Documentation": "https://github.com/milanmeu/aioaseko/blob/main/README.md",
        "Donate": "https://github.com/sponsors/milanmeu",
    },
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
        "Operating System :: OS Independent",
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "Natural Language :: English",
        "Topic :: Home Automation",
        "Typing :: Typed",
    ],
    python_requires=">=3.10",
    packages=["aioaseko"],
    package_data={"aioaseko": ["py.typed"]},
    install_requires=["aiohttp", "gql", "apischema"]
)