Revision 143aed2d
Added by koszko over 1 year ago
| setup.cfg | ||
|---|---|---|
| 32 | 32 |
= src |
| 33 | 33 |
packages = find: |
| 34 | 34 |
include_package_data=True |
| 35 |
python_requires = >= 3.7 |
|
| 35 | 36 |
install_requires = |
| 36 | 37 |
click |
| 37 |
jsonschema |
|
| 38 |
jsonschema>=3.0
|
|
| 38 | 39 |
# reuse is optional: |
| 39 | 40 |
# reuse |
| 40 | 41 |
|
| src/hydrilla/builder/build.py | ||
|---|---|---|
| 24 | 24 |
# file's license. Although I request that you do not make use this code |
| 25 | 25 |
# in a proprietary program, I am not going to enforce this in court. |
| 26 | 26 |
|
| 27 |
# Enable using with Python 3.7. |
|
| 28 |
from __future__ import annotations |
|
| 29 |
|
|
| 27 | 30 |
import json |
| 28 | 31 |
import re |
| 29 | 32 |
import zipfile |
| src/hydrilla/util/_util.py | ||
|---|---|---|
| 24 | 24 |
# file's license. Although I request that you do not make use this code |
| 25 | 25 |
# in a proprietary program, I am not going to enforce this in court. |
| 26 | 26 |
|
| 27 |
# Enable using with Python 3.7. |
|
| 28 |
from __future__ import annotations |
|
| 29 |
|
|
| 27 | 30 |
import re |
| 28 | 31 |
import json |
| 29 | 32 |
import locale |
| src/test/test_hydrilla_builder.py | ||
|---|---|---|
| 4 | 4 |
# |
| 5 | 5 |
# Available under the terms of Creative Commons Zero v1.0 Universal. |
| 6 | 6 |
|
| 7 |
# Enable using with Python 3.7. |
|
| 8 |
from __future__ import annotations |
|
| 9 |
|
|
| 7 | 10 |
import pytest |
| 8 | 11 |
import json |
| 9 | 12 |
import shutil |
Also available in: Unified diff
enable using with Python 3.7