File: setup.py

package info (click to toggle)
python-asyncarve 0.1.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: python: 250; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 637 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import find_packages, setup

setup(
    name="asyncarve",
    version="0.1.1",
    description="Simple Arve library",
    package_dir={"": "app"},
    packages=find_packages(where="app"),
    long_description="Asynchronous Python client to communicate with Arve devices",
    long_description_content_type="text/markdown",
    install_requires=["orjson>=2.0.1", "mashumaro>=3.12", "aiohttp>=3.9.3", "yarl>=1.9.4"],
    extras_require={"dev": ["pytest", "aresponses", "twine"]},
    url="https://github.com/arvetech/asyncarve",
    license="MIT",
    classifiers=[
        "License :: OSI Approved :: MIT License"
    ]
)