fix license and add info to __init__

This commit is contained in:
Izalia Mae 2021-10-11 02:34:18 -04:00
parent c13d01ea20
commit ae40923b7c
2 changed files with 27 additions and 1 deletions

11
LICENSE
View file

@ -19,7 +19,7 @@ Official Webpage: https://thufie.lain.haus/NPL.html
Terms and Conditions
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS
COOPERATIVE NON-VIOLENT PUBLIC LICENSE v5 ("LICENSE"). THE WORK IS
COOPERATIVE NON-VIOLENT PUBLIC LICENSE ("LICENSE"). THE WORK IS
PROTECTED BY COPYRIGHT AND ALL OTHER APPLICABLE LAWS. ANY USE OF THE
WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS
PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED IN THIS
@ -275,12 +275,14 @@ TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE.
i. You are a worker-owned business or worker-owned
collective; and
ii. after tax, all financial gain, surplus, profits and
benefits produced by the business or collective are
distributed among the worker-owners unless a set amount
is to be allocated towards community projects as decided
by a previously-established consensus agreement between the
worker-owners where all worker-owners agreed
iii. You are not using such rights on behalf of a business
other than those specified in 4(e.i) and elaborated upon in
4(e.ii), nor are using such rights as a proxy on behalf of a
@ -300,19 +302,26 @@ TO BE BOUND BY THE TERMS AND CONDITIONS OF THIS LICENSE.
prosecution or otherwise) outside of providing medical aid
or undergoing a voluntary procedure under no form of
Coercion.
ii.You do not use the Work for the purpose of Surveilling
or tracking individuals for financial gain.
iii. You do not use the Work in an Act of War.
iv. You do not use the Work for the purpose of supporting
or profiting from an Act of War.
v. You do not use the Work for the purpose of Incarceration.
vi. You do not use the Work for the purpose of extracting,
processing, or refining, oil, gas, or coal. Or to in any other
way to deliberately pollute the environment as a byproduct
of manufacturing or irresponsible disposal of hazardous materials.
vii. You do not use the Work for the purpose of
expediting, coordinating, or facilitating paid work
undertaken by individuals under the age of 12 years.
viii. You do not use the Work to either Discriminate or
spread Hate Speech on the basis of sex, sexual orientation,
gender identity, race, age, disability, color, national origin,

View file

@ -0,0 +1,17 @@
__software__ = 'PyPanel'
__version__ = '0.1.0'
__author__ = 'zoey Mae'
__homepage__ = 'https://git.barkshark.xyz/izaliamae/pypanel'
__license__ = 'Cooperative Non-Violent Public License v6+'
__license_url__ = 'https://git.pixie.town/thufie/CNPL/src/tag/CNPLv6/CNPL.txt'
info = dict(
name = __software__,
version = tuple(int(v) for v in __version__.split('.')),
version_str = __version__,
author = __author__,
homepage = __homepage__,
license = __license__,
license_url = __license_url__
)