mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-24 15:01:56 +03:00
13 lines
227 B
Python
13 lines
227 B
Python
import django
|
|
import lxml
|
|
import psycopg2
|
|
|
|
__version__ = "1.0"
|
|
|
|
|
|
def hello():
|
|
print(f"{__file__}: Hello world!")
|
|
print(f"{django.get_version()=}")
|
|
print(f"{lxml.__version__=}")
|
|
print(f"{psycopg2.__version__=}")
|