update statusbar setup.py to say GPLv3, not MIT
This commit is contained in:
parent
6e80934f75
commit
5161262388
|
@ -0,0 +1,20 @@
|
||||||
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
|
static const char *colorname[] = {
|
||||||
|
/* solarized light */
|
||||||
|
"#eee8d5", /* 0: black */
|
||||||
|
"#dc322f", /* 1: red */
|
||||||
|
"#859900", /* 2: green */
|
||||||
|
"#b58900", /* 3: yellow */
|
||||||
|
"#268bd2", /* 4: blue */
|
||||||
|
"#d33682", /* 5: magenta */
|
||||||
|
"#2aa198", /* 6: cyan */
|
||||||
|
"#073642", /* 7: white */
|
||||||
|
"#fdf6e3", /* 8: brblack */
|
||||||
|
"#cb4b16", /* 9: brred */
|
||||||
|
"#93a1a1", /* 10: brgreen */
|
||||||
|
"#839496", /* 11: bryellow */
|
||||||
|
"#657b83", /* 12: brblue */
|
||||||
|
"#6c71c4", /* 13: brmagenta*/
|
||||||
|
"#586e75", /* 14: brcyan */
|
||||||
|
"#002b36", /* 15: brwhite */
|
||||||
|
};
|
|
@ -7,7 +7,7 @@ setup(
|
||||||
author_email = 'ryan@beepboop.systems',
|
author_email = 'ryan@beepboop.systems',
|
||||||
url = 'https://git.beepboop.systems/stupidcomputer/dot_testing',
|
url = 'https://git.beepboop.systems/stupidcomputer/dot_testing',
|
||||||
description = 'simple statusbar content program',
|
description = 'simple statusbar content program',
|
||||||
license = 'MIT',
|
license = 'GPLv3',
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'statusbar = statusbar.statusbar:main'
|
'statusbar = statusbar.statusbar:main'
|
||||||
|
|
Loading…
Reference in New Issue