-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from clara-labs/feature/python3_cleanup
Feature/python3 cleanup
- Loading branch information
Showing
13 changed files
with
429 additions
and
374 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-r requirements.txt | ||
tabulate==0.7.7 | ||
matplotlib==2.0.2 | ||
seaborn==0.8 |
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
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
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
scikit-learn==0.17.1 | ||
tabulate==0.7.5 | ||
matplotlib==1.4.3 | ||
seaborn==0.6.0 | ||
pytest==2.9.2 | ||
scikit-learn==0.19.0 | ||
pytest==3.2.1 | ||
numpy | ||
scipy | ||
scipy |
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,24 +7,25 @@ | |
|
||
|
||
try: | ||
import numpy | ||
import numpy # NOQA | ||
except ImportError: | ||
print('numpy is required during installation') | ||
sys.exit(1) | ||
|
||
try: | ||
import scipy | ||
import scipy # NOQA | ||
except ImportError: | ||
print('scipy is required during installation') | ||
sys.exit(1) | ||
|
||
setup(name='spherecluster', | ||
version='0.1.2', | ||
description='Clustering on the unit hypersphere in scikit-learn.', | ||
author='Jason Laska', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=INSTALL_REQUIRES, | ||
url='https://github.com/clara-labs/spherecluster', | ||
license='MIT', | ||
) | ||
setup( | ||
name='spherecluster', | ||
version='0.1.5', | ||
description='Clustering on the unit hypersphere in scikit-learn.', | ||
author='Jason Laska', | ||
author_email='[email protected]', | ||
packages=find_packages(), | ||
install_requires=INSTALL_REQUIRES, | ||
url='https://github.com/clara-labs/spherecluster', | ||
license='MIT', | ||
) |
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
Oops, something went wrong.