mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Configure entry point
This commit is contained in:
parent
27e4abcfa3
commit
5595a908d8
3 changed files with 8 additions and 8 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +1,4 @@
|
||||||
/.mypy_cache/
|
/.mypy_cache/
|
||||||
/.venv/
|
/.venv/
|
||||||
|
/PFERD.egg-info/
|
||||||
|
__pycache__/
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,2 @@
|
||||||
# pylint: disable=invalid-name
|
def main() -> None:
|
||||||
|
print("Hello world")
|
||||||
"""
|
|
||||||
This module exports only what you need for a basic configuration. If you want a
|
|
||||||
more complex configuration, you need to import the other submodules manually.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from .pferd import Pferd
|
|
||||||
|
|
|
||||||
|
|
@ -5,3 +5,7 @@ version = 3.0.0
|
||||||
[options]
|
[options]
|
||||||
packages = PFERD
|
packages = PFERD
|
||||||
python_requires = >=3.8
|
python_requires = >=3.8
|
||||||
|
|
||||||
|
[options.entry_points]
|
||||||
|
console_scripts =
|
||||||
|
pferd = PFERD:main
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue