File: setup.py

package info (click to toggle)
cleware-traffic-light 1.0.8~git20240522.f5e418d-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 148 kB
  • sloc: python: 296; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 698 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

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

setup(
    name="cleware-traffic-light",
    version="1.0.8",
    description="Python3 modul and cli tool to controll the Cleware traffic light",
    long_description=long_description,
    long_description_content_type="text/markdown",
    author="Josh Rost",
    author_email="joshua.s.rost@gmail.com",
    url="https://github.com/joshrost/cleware-traffic-light",
    packages=find_packages(exclude=["traffic_light"]),
    install_requires=["pyusb"],
    entry_points={
        "console_scripts": ["ctl=cleware_traffic_light.__main__:main"],
    },
)