-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (43 loc) · 1.76 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
51
52
53
54
55
56
57
#!/usr/bin/env python
# ---- MODULE DOCSTRING
__doc__ = """
(C) Forest Evolution Algorithm, Romain Wuilbercq, 2017
^ ^ ^ ^ ___I_ ^ ^ ^ ^ ^ ^ ^
/|\/|\/|\ /|\ /\-_--\ /|\/|\ /|\/|\/|\ /|\/|\
/|\/|\/|\ /|\ / \_-__\ /|\/|\ /|\/|\/|\ /|\/|\
/|\/|\/|\ /|\ |[]| [] | /|\/|\ /|\/|\/|\ /|\/|\
The **Forest Evolution Algorithm (FEA)** is based on the
seed dispersal mechanism employed by trees to colonize
forest areas.
Its implementation is a variant of the Invasive Weed
Algorithm (IWA).
"""
# ---- IMPORT MODULE(S)
from distutils.core import setup
# ---- SETUP INFORMATION
setup(name = "Forest",
version = "x.x.x",
description = "Forest optimisation Algorithm",
author = "Romain Wuilbercq",
author_email = "[email protected]",
url = "https://github.com/rwuilbercq/Forest",
keywords = ["optimisation", "swarm", "stochastic", "global"],
classifiers = [
"Programming Language :: Python",
"Development Status :: Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
long_description = """
(C) Forest Evolution Algorithm, Romain Wuilbercq, 2017
^ ^ ^ ^ ___I_ ^ ^ ^ ^ ^ ^ ^
/|\/|\/|\ /|\ /\-_--\ /|\/|\ /|\/|\/|\ /|\/|\
/|\/|\/|\ /|\ / \_-__\ /|\/|\ /|\/|\/|\ /|\/|\
/|\/|\/|\ /|\ |[]| [] | /|\/|\ /|\/|\/|\ /|\/|\
The **Forest Evolution Algorithm (FEA)** is based on the
seed dispersal mechanism employed by trees to colonize
forest areas.
Its implementation is a variant of the Invasive Weed
Algorithm (IWA).
""")