-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1018 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='pysisy',
version='0.13',
description='Graphical UI and training shorthand for neural nets hyper parameters & architecture search with genetic algorithms',
keywords=['keras', 'genetic algorithm', 'neural network', 'deep learning'],
author='Charlie Sanders',
author_email='charlie.fats@gmail.com',
url='https://github.com/qorrect/sisy',
license='Apache',
setup_requires=[
'numpy>=1.12'],
install_requires=[
'numpy>=1.12',
'keras>=2.0.0',
'deap>=1.0.2'],
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())