-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 965 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 965 Bytes
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
from setuptools import setup, find_packages
import pathlib
PACKAGE_NAME = "inputflow"
VERSION = "0.1.0"
DESCRIPTION = "Cross-platform input event handling for different devices (gamepads, keyboards, mice, etc)"
here = pathlib.Path(__file__).parent.resolve()
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
setup(
name=PACKAGE_NAME,
version=VERSION,
author="Matthias Schuller",
author_email="matthiasshuller92@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/maschull106/inputflow.git",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"pynput",
"evdev",
],
include_package_data=True,
package_data={
},
keywords=["python, input, event, gamepad, keyboard, mouse"],
)