-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
30 lines (28 loc) · 977 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import find_packages
from setuptools import setup
setup(name='pyminos',
version='0.5.1',
description='Neural nets hyper parameters & architecture search with genetic algorithms',
keywords=['keras', 'genetic algorithm', 'neural network', 'deep learning'],
author='Julien Roch',
author_email='[email protected]',
url='https://github.com/guybedo/minos',
license='Apache',
setup_requires=[
'numpy>=1.12'],
install_requires=[
'numpy>=1.12',
'keras==1.2.2',
'deap>=1.2.0'],
extras_require={
'h5py': ['h5py'],
'tests': ['pytest',
'pytest-cov',
'pytest-pep8',
'pytest-xdist',
'python-coveralls',
'coverage==3.7.1'],
'tf': ["tensorflow>=1.0.0"],
'tf_gpu': ["tensorflow-gpu>=1.0.0"]
},
packages=find_packages())