Files
langkit/scripts/create-project.py
Pierre-Marie de Rodat 059030ba0e Transition "create-project.py" to setuptools' entry_point/console_script
Stop using setuptools' "scripts" feature, now obsolete and bound to
create issues in the future, and use the newer
entry_point/console_script mechanism instead to create the same
command-line tool.

Preserve the "scripts/create-script.py" executable source for
development environment convenience.
2023-12-05 11:45:37 +00:00

7 lines
81 B
Python
Executable File

#! /usr/bin/env python
from langkit.scripts.create_project import main
main()