Files
langkit/scripts/create-project.py
Pierre-Marie de Rodat 5cff5085f6 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.

(cherry picked from commit 059030ba0e)
2023-12-05 14:15:53 +01:00

7 lines
81 B
Python
Executable File

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