removed zip_safe = false entry from setup.cfg

This commit is contained in:
Daniel Otto de Mentock 2022-04-25 14:58:15 +02:00 committed by Martin Diehl
parent b4c6ca64fc
commit 59668d2910
2 changed files with 5 additions and 6 deletions

View File

@ -234,7 +234,7 @@ update_revision:
- git clone -q git@git.damask.mpie.de:damask/DAMASK.git . - git clone -q git@git.damask.mpie.de:damask/DAMASK.git .
- git pull - git pull
- VERSION=$(git describe ${CI_COMMIT_SHA}) - VERSION=$(git describe ${CI_COMMIT_SHA})
- export VERSION="${VERSION:1:-1}" - export VERSION="${VERSION:1}"
- echo ${VERSION} > python/damask/VERSION - echo ${VERSION} > python/damask/VERSION
- > - >
git diff-index --quiet HEAD || git diff-index --quiet HEAD ||

View File

@ -16,16 +16,15 @@ classifiers =
[options] [options]
packages = damask packages = damask
zip_safe = false
include_package_data = true include_package_data = true
python_requires = >= 3.8 python_requires = >= 3.8
install_requires = install_requires =
importlib-metadata; python_version<"3.8" importlib-metadata; python_version<"3.8"
pandas; python_version<="0.24" # requires numpy pandas; python_version<="0.24" # requires numpy
numpy; python_version<="1.17" # needed for default_rng numpy; python_version<="1.17" # needed for default_rng
scipy; python_version<="1.2" scipy; python_version<="1.2"
h5py; python_version<="2.9" # requires numpy h5py; python_version<="2.9" # requires numpy
vtk; python_version<="8.1" vtk; python_version<="8.1"
matplotlib; python_version<="3.0" # requires numpy, pillow matplotlib; python_version<="3.0" # requires numpy, pillow
pyyaml; python_version<="3.12" pyyaml; python_version<="3.12"
setup_requires = setuptools setup_requires = setuptools