build/blanc

This commit is contained in:
Marc Beninca 2020-04-27 12:46:18 +02:00
parent 742de3b4e7
commit 41e220cb8b

View file

@ -9,6 +9,11 @@ INPUT = ["cnam"]
OUTPUT = "out" OUTPUT = "out"
def others():
import cnam.travaux.blanc.build as blanc
blanc.main()
def main(): def main():
file = os.path.realpath(__file__) file = os.path.realpath(__file__)
directory = os.path.dirname(file) directory = os.path.dirname(file)
@ -28,6 +33,7 @@ def main():
os.path.join(output_directory, doc), os.path.join(output_directory, doc),
] ]
sphinx.build_main(arguments) sphinx.build_main(arguments)
others()
if __name__ == "__main__": if __name__ == "__main__":