mirror of
https://github.com/umap-project/umap.git
synced 2025-05-02 21:01:48 +02:00
16 lines
256 B
Python
16 lines
256 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
from django.core import management
|
|
|
|
|
|
def main():
|
|
os.environ.setdefault(
|
|
"DJANGO_SETTINGS_MODULE",
|
|
"umap.settings"
|
|
)
|
|
management.execute_from_command_line()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|