-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiple refactor and code cleanup (#1)
- Loading branch information
Showing
2 changed files
with
132 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
|
||
|
||
def which(program): | ||
import os | ||
def is_exe(fpath): | ||
return os.path.isfile(fpath) and os.access(fpath, os.X_OK) | ||
|
||
|
@@ -49,14 +48,15 @@ def is_exe(fpath): | |
'androguard==3.1.0' | ||
] | ||
|
||
setup(name = 'exodus_core', | ||
version = '1.0.15', | ||
description = 'Core functionality of εxodus', | ||
author = 'Exodus Privacy', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/Exodus-Privacy/exodus-core', | ||
packages = find_packages(exclude = ["*.tests", "*.tests.*", "test*", "tests"]), | ||
install_requires = install_requires, | ||
include_package_data = True, | ||
zip_safe = False, | ||
) | ||
setup( | ||
name='exodus_core', | ||
version='1.0.16', | ||
description='Core functionality of εxodus', | ||
author='Exodus Privacy', | ||
author_email='[email protected]', | ||
url='https://github.com/Exodus-Privacy/exodus-core', | ||
packages=find_packages(exclude=["*.tests", "*.tests.*", "test*", "tests"]), | ||
install_requires=install_requires, | ||
include_package_data=True, | ||
zip_safe=False, | ||
) |