Initial isort configuration

Will fail build if imports are not sorted correctly
This commit is contained in:
Martin Whitehouse
2022-07-22 03:26:41 +02:00
parent 12bb68d5ee
commit 25542f929e
57 changed files with 330 additions and 280 deletions

View File

@ -1,10 +1,20 @@
# -*- coding: utf-8 -*-
"""Python packaging."""
from __future__ import unicode_literals
from setuptools import setup
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
project_root = os.path.dirname(here)