diff options
-rw-r--r-- | pyproject.toml | 3 | ||||
-rw-r--r-- | setup.py | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..75e0100fe --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ['setuptools'] +build-backend = 'setuptools.build_meta' @@ -1,8 +1,12 @@ #!/usr/bin/env python3 -import os.path -import subprocess +# Allow execution from anywhere +import os import sys + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) + +import subprocess import warnings try: |