Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
2dcbbe9639 | |||
242a086ba1 |
100
lutin/license.py
Normal file
100
lutin/license.py
Normal file
@@ -0,0 +1,100 @@
|
||||
#!/usr/bin/python
|
||||
##
|
||||
## @author Edouard DUPIN
|
||||
##
|
||||
## @copyright 2012, Edouard DUPIN, all right reserved
|
||||
##
|
||||
## @license APACHE v2.0 (see license file)
|
||||
##
|
||||
|
||||
license_base = {
|
||||
"APACHE-2": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"APACHE v2.0 license",
|
||||
"licence-file":"licence/apache-2.txt"
|
||||
},
|
||||
"GPL-2": {
|
||||
"generic":True,
|
||||
"contaminate-static":True,
|
||||
"contaminate-dynamic":True,
|
||||
"redistribute-source":True,
|
||||
"title":"GPL: Gnu Public Licence v2.0",
|
||||
"licence-file":"licence/GPL-2.txt"
|
||||
},
|
||||
"GPL-3": {
|
||||
"generic":True,
|
||||
"contaminate-static":True,
|
||||
"contaminate-dynamic":True,
|
||||
"redistribute-source":True,
|
||||
"title":"GPL: GNU General Public License v3.0",
|
||||
"licence-file":"licence/GPL-3.txt"
|
||||
},
|
||||
"LGPL-2": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":True,
|
||||
"title":"LGPL: GNU Lesser General Public License v2.0",
|
||||
"licence-file":"licence/LGPL-2.txt"
|
||||
},
|
||||
"LGPL-3": {
|
||||
"generic":True,
|
||||
"contaminate-static":True,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":True,
|
||||
"title":"LGPL: GNU Lesser General Public License v3.0",
|
||||
"licence-file":"licence/LGPL-3.txt"
|
||||
},
|
||||
"MIT": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"MIT: Massachusetts Institute of Technology License",
|
||||
"licence-file":"licence/MIT.txt"
|
||||
},
|
||||
"BSD-2": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"BSD 2-clauses: Berkeley Software Distribution License",
|
||||
"licence-file":"licence/BSD-2.txt"
|
||||
},
|
||||
"BSD-3": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"BSD 3-clauses: Berkeley Software Distribution License",
|
||||
"licence-file":"licence/BSD-3.txt"
|
||||
},
|
||||
"BSD-4": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"BSD 4-clauses: Berkeley Software Distribution License",
|
||||
"licence-file":"licence/BSD-4.txt"
|
||||
},
|
||||
"PNG": {
|
||||
"generic":True,
|
||||
"contaminate-static":False,
|
||||
"contaminate-dynamic":False,
|
||||
"redistribute-source":False,
|
||||
"title":"PNG License",
|
||||
"licence-file":"licence/png.txt"
|
||||
}
|
||||
}
|
||||
|
||||
def get_basic_list():
|
||||
global license_base
|
||||
out = []
|
||||
for name in license_base:
|
||||
out.append(name)
|
||||
return out
|
||||
|
||||
|
9
setup.py
9
setup.py
@@ -7,7 +7,7 @@ def readme():
|
||||
|
||||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||
setup(name='lutin',
|
||||
version='0.7.0',
|
||||
version='0.7.1',
|
||||
description='Lutin generic builder',
|
||||
long_description=readme(),
|
||||
url='http://github.com/HeeroYui/lutin',
|
||||
@@ -26,9 +26,10 @@ setup(name='lutin',
|
||||
],
|
||||
keywords='builder c++ c android ios macos makefile cmake',
|
||||
scripts=['bin/lutin'],
|
||||
data_file=[
|
||||
('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
||||
],
|
||||
# Does not work on MacOs
|
||||
#data_file=[
|
||||
# ('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
||||
#],
|
||||
include_package_data = True,
|
||||
zip_safe=False)
|
||||
|
||||
|
Reference in New Issue
Block a user