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-depend
common_helper_files
Commits
8720d5a7
Commit
8720d5a7
authored
7 years ago
by
Peter Weidenbach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unused imports removed and PEP8 corrections
parent
515920e6
master
…
2.2
0.3.0
0.2.3
0.2.2
0.2
0.1.9
0.1.8
0.1.7
0.1.6
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
__init__.py
common_helper_files/__init__.py
+2
-2
setup.py
setup.py
+2
-3
No files found.
common_helper_files/__init__.py
View file @
8720d5a7
__version__
=
'0.1.5'
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
from
.hash_functions
import
md5sum
from
.hash_functions
import
md5sum
from
.fail_safe_file_operations
import
get_binary_from_file
,
write_binary_to_file
,
get_safe_name
,
delete_file
,
get_files_in_dir
from
.fail_safe_file_operations
import
get_binary_from_file
,
write_binary_to_file
,
get_safe_name
,
delete_file
,
get_files_in_dir
from
.config_functions
import
update_config_from_env
from
.config_functions
import
update_config_from_env
__version__
=
'0.1.5'
__all__
=
[
__all__
=
[
'get_directory_for_filename'
,
'get_directory_for_filename'
,
'create_dir_for_file'
,
'create_dir_for_file'
,
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
8720d5a7
import
os
import
subprocess
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
from
common_helper_files
import
__version__
from
common_helper_files
import
__version__
...
@@ -10,5 +8,6 @@ setup(
...
@@ -10,5 +8,6 @@ setup(
install_requires
=
[
install_requires
=
[
'hurry.filesize >= 0.9'
'hurry.filesize >= 0.9'
],
],
description
=
"file operation helper functions"
description
=
"file operation helper functions"
,
license
=
"MIT License"
)
)
This diff is collapsed.
Click to expand it.
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