-
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.
Finally fix installation of photon requirements
- Loading branch information
1 parent
2ccf4f7
commit babf490
Showing
2 changed files
with
13 additions
and
6 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 |
---|---|---|
@@ -1,17 +1,23 @@ | ||
from distutils.core import setup | ||
from setuptools import find_packages | ||
import photonai | ||
try: | ||
from setuptools import setup, find_packages | ||
except ImportError: | ||
from ez_setup import use_setuptools | ||
use_setuptools() | ||
from setuptools import setup, find_packages | ||
|
||
|
||
__version__ = '0.4.0' | ||
|
||
setup( | ||
name='photonai', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
version=photonai.__version__, | ||
version=__version__, | ||
description='A Python-Based Hyperparameter optimization Toolbox for Neural Networks', | ||
author='PHOTON Team', | ||
author_email='[email protected]', | ||
url='https://github.com/photonai-team/photonai.git', | ||
download_url='https://github.com/photonai-team/photonai/archive/' + photonai.__version__ + '.tar.gz', | ||
download_url='https://github.com/photonai-team/photonai/archive/' + __version__ + '.tar.gz', | ||
keywords=['machine learning', 'deep learning', 'neural networks', 'hyperparameter'], | ||
classifiers=[], | ||
install_requires=[ | ||
|