File: setup.py

package info (click to toggle)
openrazer 3.10.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,208 kB
  • sloc: ansic: 13,647; python: 11,795; sh: 575; xml: 261; makefile: 133
file content (17 lines) | stat: -rw-r--r-- 435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later

from setuptools import setup, find_packages

setup(
    name="openrazer_daemon",
    version="3.10.2",
    packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
    install_requires=[
        "daemonize >= 2.4.7",
        "dbus-python >= 1.2.0",
        "PyGObject >= 3.20.0",
        "pyudev >= 0.16.1",
        "setproctitle >= 1.1.8",
    ],
)