-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.01 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.01 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="keybind-audit",
version="0.1.0",
author="Clyde",
author_email="hoornet@protonmail.com",
description="Detect and resolve keyboard shortcut conflicts across Linux applications",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hoornet/keybind-audit",
py_modules=["keybind_audit"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8+",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Topic :: System",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"keybind-audit=keybind_audit:main",
],
},
)