-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
42 lines (41 loc) · 1.18 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup
setup(
name="keyboardsounds",
version="5.9.1",
description="Adds the ability to play sounds while typing on any system.",
author="Nathan Fiscaletti",
author_email="[email protected]",
packages=["keyboardsounds"],
install_requires=[
"pygame==2.6.1",
"pynput==1.7.7",
"psutil==6.1.0",
"imageio-ffmpeg==0.5.1",
"pyyaml==6.0.2",
"setuptools==75.3.0",
"requests==2.32.3",
],
package_data={
"keyboardsounds": [
"profiles/alpaca/*",
"profiles/gateron-black-ink/*",
"profiles/gateron-red-ink/*",
"profiles/holy-panda/*",
"profiles/ios/*",
"profiles/mx-black/*",
"profiles/mx-blue/*",
"profiles/mx-brown/*",
"profiles/mx-speed-silver/*",
"profiles/telios-v2/*",
"profiles/typewriter/*",
"profiles/profile.template.yaml",
"external_api/*",
],
},
entry_points={
"console_scripts": [
"keyboardsounds = keyboardsounds.main:main",
"kbs = keyboardsounds.main:main",
],
},
)