-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·104 lines (102 loc) · 3.3 KB
/
setup.py
File metadata and controls
executable file
·104 lines (102 loc) · 3.3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/usr/bin/env python3
from setuptools import setup
from chroma_feedback import metadata
from chroma_feedback.install import InstallCommand
setup(
name = metadata.get('name'),
description = metadata.get('description'),
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
version = metadata.get('version'),
license = metadata.get('license'),
keywords = metadata.get('keywords'),
author = metadata.get('author'),
author_email = metadata.get('author_email'),
url = metadata.get('url'),
packages =
[
'chroma_feedback',
'chroma_feedback.producers',
'chroma_feedback.producers.appveyor.appveyor',
'chroma_feedback.producers.atlassian.bamboo',
'chroma_feedback.producers.atlassian.bitbucket',
'chroma_feedback.producers.betterstack.betterstack',
'chroma_feedback.producers.buddy.buddy',
'chroma_feedback.producers.circle.circle',
'chroma_feedback.producers.cloudbees.codeship',
'chroma_feedback.producers.custom.custom',
'chroma_feedback.producers.datadog.datadog',
'chroma_feedback.producers.gitlab.gitlab',
'chroma_feedback.producers.heroku.heroku',
'chroma_feedback.producers.jenkins.jenkins',
'chroma_feedback.producers.jetbrains.teamcity',
'chroma_feedback.producers.microsoft.azure',
'chroma_feedback.producers.microsoft.github',
'chroma_feedback.producers.netlify.netlify',
'chroma_feedback.producers.travis.travis',
'chroma_feedback.producers.uptimerobot.uptimerobot',
'chroma_feedback.producers.vercel.vercel',
'chroma_feedback.consumers',
'chroma_feedback.consumers.agile_innovative.blinkstick',
'chroma_feedback.consumers.compulab.fit_statusb',
'chroma_feedback.consumers.elgato.streamdeck',
'chroma_feedback.consumers.embrava.blynclight',
'chroma_feedback.consumers.embrava.blynclight_mini',
'chroma_feedback.consumers.embrava.blynclight_plus',
'chroma_feedback.consumers.gigabyte.rgb_fusion2',
'chroma_feedback.consumers.kuando.busylight_alpha',
'chroma_feedback.consumers.kuando.busylight_omega',
'chroma_feedback.consumers.lifx.lifx',
'chroma_feedback.consumers.luxafor.flag',
'chroma_feedback.consumers.luxafor.mute',
'chroma_feedback.consumers.luxafor.orb',
'chroma_feedback.consumers.magic.hue',
'chroma_feedback.consumers.muteme.muteme',
'chroma_feedback.consumers.muteme.muteme_mini',
'chroma_feedback.consumers.mutesync.mutesync',
'chroma_feedback.consumers.nanoleaf.nanoleaf',
'chroma_feedback.consumers.philips.hue',
'chroma_feedback.consumers.plantronics.status_indicator',
'chroma_feedback.consumers.razer.chroma',
'chroma_feedback.consumers.signify.wiz',
'chroma_feedback.consumers.thingm.blink1',
'chroma_feedback.consumers.xiaomi.yeelight'
],
cmdclass =
{
'install': InstallCommand
},
entry_points =
{
'console_scripts':
[
'chroma-feedback = chroma_feedback.core:cli',
]
},
install_requires =
[
'busylight-for-humans==0.45.1',
'lifxlan==1.2.8',
'liquidctl==1.15.0',
'nanoleafapi==2.1.2',
'phue==1.1',
'python-magichue==0.3.2',
'pyqt6==6.9.1',
'pywizlight==0.6.3',
'requests==2.32.4',
'streamdeck==0.9.7',
'yeelight==0.7.16'
],
tests_require =
[
'flake8==7.3.0',
'mock==5.2.0',
'mypy==1.17.1',
'pytest==8.4.1',
'pytest-cov==6.2.1',
'pytest-dotenv==0.5.2',
'pytest-mock==3.14.1',
'types-mock==5.2.0.20250809',
'types-requests==2.32.4.20250809'
]
)