-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add add custom license info to darkdetect * add license file to lenovolegionlinux rpm spec file Signed-off-by: Gonçalo Duarte <[email protected]>
- Loading branch information
1 parent
9c6dc84
commit 3846c60
Showing
3 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ author_email = [email protected] | |
description = Detect OS Dark Mode from Python | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
license = Custom License | ||
license_files = LICENSE | ||
url = https://github.com/albertosottile/darkdetect | ||
project_urls = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[metadata] | ||
name = legion_linux | ||
version = 1.0.0 | ||
version = _VERSION | ||
author = johnfan | ||
author_email = [email protected] | ||
description = Control Lenovo Legion laptop | ||
long_description = file: README.md | ||
license = GPL-2.0 | ||
license_files = LICENSE | ||
long_description_content_type = text/markdown | ||
url = https://github.com/johnfanv2/LenovoLegionLinux | ||
project_urls = | ||
|
@@ -15,18 +16,39 @@ classifiers = | |
Programming Language :: Python :: 3 | ||
|
||
[options] | ||
package_dir = | ||
= . | ||
packages = find: | ||
python_requires = >=3.6 | ||
packages = find: | ||
install_requires= | ||
PyQT5 | ||
PyYAML | ||
argcomplete | ||
darkdetect | ||
|
||
[options.packages.find] | ||
where = . | ||
exclude = | ||
tests | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
legion_cli= legion_cli:main | ||
legion_gui= legion_gui:main | ||
legion_cli= legion_linux.legion_cli:main | ||
legion_gui= legion_linux.legion_gui:main | ||
|
||
[options.package_data] | ||
* = legion_logo.png, legion_logo_light.png, legion_logo_dark.png | ||
|
||
[options.data_files] | ||
data = legion_gui.desktop | ||
share/pixmaps/ = | ||
legion_linux/legion_logo.png | ||
legion_linux/legion_logo_light.png | ||
legion_linux/legion_logo_dark.png | ||
share/applications/ = | ||
legion_linux/legion_gui.desktop | ||
legion_linux/legion_gui_user.desktop | ||
share/polkit-1/actions/ = | ||
legion_linux/legion_cli.policy | ||
legion_linux/legion_gui.policy | ||
share/legion_linux/ = | ||
legion_linux/extra/service/.env | ||
legion_linux/extra/service/profiles/* | ||
bin/ = | ||
legion_linux/extra/service/fancurve-set |