-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (42 loc) · 1.49 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, setuptools
from deepevolution import __version__
__author__ = 'Iván de Paz Centeno'
def readme():
with open('README.rst', encoding="UTF-8") as f:
return f.read()
if sys.version_info < (3, 4, 1):
sys.exit('Python < 3.4.1 is not supported!')
setup(name='deepevolution',
version=__version__,
description='A genetic algorithm to evolve tensorflow keras neural networks.',
long_description=readme(),
url='http://github.com/ipazc/deepevolution',
author='Iván de Paz Centeno',
author_email='ipazc@unileon.es',
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
install_requires=[
"numpy",
"pandas>=1.1.0",
"tqdm"
],
extras_require={
"tf": ["tensorflow>=2.0.0"],
"tf_gpu": ["tensorflow-gpu>=2.0.0"],
},
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
include_package_data=True,
keywords="deepevolution genetic algorithm keras tensorflow evolve network",
zip_safe=False)