-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52be866
commit 28dfb66
Showing
3 changed files
with
4 additions
and
3 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 |
---|---|---|
|
@@ -26,6 +26,7 @@ eggs/ | |
lib64/ | ||
parts/ | ||
sdist/ | ||
dist/ | ||
var/ | ||
wheels/ | ||
*.egg-info/ | ||
|
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 |
---|---|---|
|
@@ -13,6 +13,6 @@ | |
""" | ||
|
||
__version__ = '1.0.0b' | ||
__version__ = '1.1.0' | ||
|
||
# __all__ = ( ) |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
use_setuptools() | ||
from setuptools import setup, find_packages | ||
|
||
__version__ = '1.0.0b' | ||
__version__ = '1.1.0' | ||
|
||
setup( | ||
name='photonai', | ||
|
@@ -29,7 +29,7 @@ | |
author='PHOTON Team', | ||
author_email='[email protected]', | ||
url='https://github.com/photonai-team/photonai.git', | ||
download_url='https://github.com/photonai-team/photonai/archive/' + __version__ + '.tar.gz', | ||
download_url='https://github.com/photon-team/photonai/archive/' + __version__ + '.tar.gz', | ||
keywords=['machine learning', 'deep learning', 'neural networks', 'hyperparameter'], | ||
classifiers=[], | ||
install_requires=['numpy>=1.15.0', | ||
|