[DEV] continue rework
This commit is contained in:
parent
6746ff41bb
commit
b256a30b36
@ -12,10 +12,10 @@ from realog import debug
|
|||||||
|
|
||||||
|
|
||||||
my_args = arguments.Arguments()
|
my_args = arguments.Arguments()
|
||||||
my_args.add("h", "help", desc="display this help"))
|
my_args.add("h", "help", desc="display this help")
|
||||||
my_args.add_section("option", "Can be set one time in all case")
|
my_args.add_section("option", "Can be set one time in all case")
|
||||||
my_args.add("v", "verbose", list=[["0","None"],["1","error"],["2","warning"],["3","info"],["4","debug"],["5","verbose"]], desc="Display makefile debug level (verbose) default =2"))
|
my_args.add("v", "verbose", list=[["0","None"],["1","error"],["2","warning"],["3","info"],["4","debug"],["5","verbose"]], desc="Display makefile debug level (verbose) default =2")
|
||||||
my_args.add("C", "color", desc="Display makefile output in color"))
|
my_args.add("C", "color", desc="Display makefile output in color")
|
||||||
|
|
||||||
my_args.add_section("cible", "generate in order set")
|
my_args.add_section("cible", "generate in order set")
|
||||||
local_argument = my_args.parse()
|
local_argument = my_args.parse()
|
||||||
|
16
setup.py
16
setup.py
@ -26,18 +26,18 @@ def read_version_file():
|
|||||||
return data_file
|
return data_file
|
||||||
|
|
||||||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
setup(name='lutin',
|
setup(name='monk',
|
||||||
version=read_version_file(),
|
version=read_version_file(),
|
||||||
description='Lutin generic builder (might replace makefile, CMake ...)',
|
description='Monk documentation builder',
|
||||||
long_description=readme(),
|
long_description=readme(),
|
||||||
url='http://github.com/HeeroYui/doxy',
|
url='http://github.com/HeeroYui/doxy',
|
||||||
author='Edouard DUPIN',
|
author='Edouard DUPIN',
|
||||||
author_email='yui.heero@gmail.com',
|
author_email='yui.heero@gmail.com',
|
||||||
license='MPL-2',
|
license='MPL-2',
|
||||||
packages=['lutin',
|
packages=['monk',
|
||||||
'lutin/codeBB',
|
'monk/codeBB',
|
||||||
'lutin/codeHL',
|
'monk/codeHL',
|
||||||
'lutin/codeMarkDown'],
|
'monk/codeMarkDown'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
|
||||||
@ -49,7 +49,7 @@ setup(name='lutin',
|
|||||||
scripts=['bin/monk'],
|
scripts=['bin/monk'],
|
||||||
# Does not work on MacOs
|
# Does not work on MacOs
|
||||||
#data_file=[
|
#data_file=[
|
||||||
# ('/etc/bash_completion.d', ['bash-autocompletion/lutin']),
|
# ('/etc/bash_completion.d', ['bash-autocompletion/monk']),
|
||||||
#],
|
#],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'realog',
|
'realog',
|
||||||
@ -61,7 +61,7 @@ setup(name='lutin',
|
|||||||
|
|
||||||
#To developp: sudo ./setup.py install
|
#To developp: sudo ./setup.py install
|
||||||
# sudo ./setup.py develop
|
# sudo ./setup.py develop
|
||||||
#pylint test: pylint2 --rcfile=pylintRcFile.txt lutin/module.py
|
#pylint test: pylint2 --rcfile=pylintRcFile.txt monk/module.py
|
||||||
|
|
||||||
#TO register all in pip: use external tools:
|
#TO register all in pip: use external tools:
|
||||||
# pip install twine
|
# pip install twine
|
||||||
|
Loading…
x
Reference in New Issue
Block a user