File: setup.py

package info (click to toggle)
python-arcam-fmj 1.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 196 kB
  • sloc: python: 2,578; makefile: 5
file content (46 lines) | stat: -rw-r--r-- 1,340 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
39
40
41
42
43
44
45
46
from setuptools import find_packages, setup

# read the contents of your README file
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.rst"), encoding="utf-8") as f:
    long_description = f.read()

setup(
    name="arcam-fmj",
    version="1.5.2",
    description="A python library for speaking to Arcam receivers",
    long_description=long_description,
    long_description_content_type="text/x-rst",
    license="MIT",
    packages=["arcam.fmj"],
    package_dir={"": "src"},
    package_data = {
        'arcam.fmj': ['py.typed'],
    },
    python_requires=">=3.8",
    author="Joakim Plate",
    install_requires=["attrs>18.1"],
    extras_require={
        "tests": [
            "pytest>3.6.4",
            "pytest-asyncio==0.21.2",
            "pytest-aiohttp>=1.0.0",
            "pytest-cov>=3.0.0",
            "coveralls",
            "pytest-mock",
            "aiohttp",
            "defusedxml"
        ]
    },
    entry_points={"console_scripts": ["arcam-fmj=arcam.fmj.console:main"]},
    url="https://github.com/elupus/arcam_fmj",
    classifiers=[
        "License :: OSI Approved :: MIT License",
        "Development Status :: 4 - Beta",
        "Environment :: Console",
        "Environment :: Plugins",
        "Framework :: AsyncIO",
    ],
)