-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 830 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (30 loc) · 830 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
31
32
#!/usr/bin/env python3
from setuptools import setup, find_packages
from quikey.version import __version__
# NOTE: Update the __version__ flag in quikey/version.py for release.
setup(
name="quikey",
version=__version__,
packages=find_packages(),
author="bostrt",
entry_points={
"console_scripts": ["qk=quikey.quikey:cli", "quikey-daemon=quikey.qkdaemon:cli"]
},
description="A keyboard macro tool.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="",
url="https://github.com/bostrt/quikey",
install_requires=[
"click",
"python-daemon",
"inotify-simple",
"tinydb",
"pynput",
"terminaltables",
"pyxdg",
"humanize",
"pick",
"filelock",
],
)