11 lines
184 B
Python
11 lines
184 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
import os, sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
|
|
|
|
from anisotropy.core.cli import anisotropy
|
|
|
|
anisotropy()
|
|
|
|
|