mirror of
https://github.com/AdaCore/langkit.git
synced 2026-02-12 12:28:12 -08:00
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.
7 lines
81 B
Python
Executable File
7 lines
81 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
from langkit.scripts.create_project import main
|
|
|
|
|
|
main()
|