forked from leap-ec/LEAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.33 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
from setuptools import setup, find_packages
# Load the version number from inside the package
exec(open('leap_ec/__version__.py').read())
# Use the README as the long_description
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='leap_ec',
version=__version__,
packages=find_packages(),
license='Academic',
author='Mark Coletti, Eric Scott, Jeff Bassett',
author_email='[email protected]',
description='A general purpose Library for Evolutionary Algorithms in Python.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AureumChaos/LEAP',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Academic Free License (AFL)',
'Operating System :: OS Independent'
],
python_requires='>=3.7',
install_requires=[
'dask[complete]', # Used for parallel and distributed algorithms
'distributed', # Used for parallel and distributed algorithms
'matplotlib', # Used in visualizations
'networkx', # Used to specify island model topologies
'numpy', # Used for vector math
'pandas', # Used to process CSV output for probes
'scipy',
'toolz' # Used for functional pipelines of operators
]
)