-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (26 loc) · 849 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
from setuptools import setup, find_packages
setup(
name='fastgp',
version='0.1.0',
description='Fast genetic programming.',
author='Chris Fusting',
author_email='[email protected]',
license='GNU GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3'
],
keywords='evolution machine learning artificial intelligence',
install_requires=[
'scipy',
'deap',
'cachetools',
'numpy',
],
python_requires='>=2.7',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
url='https://github.com/cfusting/fastgp'
)