Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
common_helper_files
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-gitdep
common_helper_files
Commits
b564f0d2
Commit
b564f0d2
authored
Aug 17, 2017
by
Peter Weidenbach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bugfix
parent
0ad47f89
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
14 deletions
+3
-14
README.md
README.md
+0
-9
__init__.py
common_helper_files/__init__.py
+0
-3
setup.py
setup.py
+3
-2
No files found.
README.md
View file @
b564f0d2
...
@@ -5,12 +5,3 @@ File and filesystem related helper functions incl.:
...
@@ -5,12 +5,3 @@ File and filesystem related helper functions incl.:
*
Fail safe file operations:
*They log errors but never throw an exception*
*
Fail safe file operations:
*They log errors but never throw an exception*
*
Git version string generator
*
Git version string generator
*
Large file handling
*
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
```
common_helper_files/__init__.py
View file @
b564f0d2
...
@@ -2,9 +2,6 @@ from .fail_safe_file_operations import get_binary_from_file, get_string_list_fro
...
@@ -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
.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
from
.git_functions
import
get_version_string_from_git
__version__
=
'0.2'
__all__
=
[
__all__
=
[
'get_directory_for_filename'
,
'get_directory_for_filename'
,
'create_dir_for_file'
,
'create_dir_for_file'
,
...
...
setup.py
View file @
b564f0d2
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
common_helper_files
import
__version__
VERSION
=
'0.2'
setup
(
setup
(
name
=
'common_helper_files'
,
name
=
'common_helper_files'
,
version
=
__version__
,
version
=
VERSION
,
packages
=
find_packages
(),
packages
=
find_packages
(),
install_requires
=
[
install_requires
=
[
'bitmath'
'bitmath'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment