Commit b564f0d2 by Peter Weidenbach

bugfix

parent 0ad47f89
......@@ -5,12 +5,3 @@ File and filesystem related helper functions incl.:
* Fail safe file operations: *They log errors but never throw an exception*
* Git version string generator
* Large file handling
## Known Issues
It seems that recent versions of setuptools can't handle a "." in the requirements list.
Therfore, [hurry.filesize](https://pypi.python.org/pypi/hurry.filesize) must be installed manually in advance.
```sh
$ sudo -EH pip3 install hurry.filesize
```
......@@ -2,9 +2,6 @@ from .fail_safe_file_operations import get_binary_from_file, get_string_list_fro
from .file_functions import read_in_chunks, get_directory_for_filename, create_dir_for_file, human_readable_file_size
from .git_functions import get_version_string_from_git
__version__ = '0.2'
__all__ = [
'get_directory_for_filename',
'create_dir_for_file',
......
from setuptools import setup, find_packages
from common_helper_files import __version__
VERSION = '0.2'
setup(
name='common_helper_files',
version=__version__,
version=VERSION,
packages=find_packages(),
install_requires=[
'bitmath'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment