forked from xcsf-dev/xcsf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
127 lines (115 loc) · 4.21 KB
/
Copy pathsetup.py
File metadata and controls
127 lines (115 loc) · 4.21 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/usr/bin/python3
#
# Copyright (C) 2021 Richard Preen <rpreen@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
""" Python setup script for installing XCSF. """
import os
import platform
import subprocess
import sys
from pathlib import Path
from setuptools import Extension, find_packages, setup
from setuptools.command.build_ext import build_ext
class CMakeExtension(Extension):
"""Creates a CMake extension module."""
def __init__(self, name, sourcedir=""):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
"""Builds CMake extension."""
def build_extension(self, ext):
self.announce("Configuring CMake project", level=3)
extdir = os.path.abspath(os.path.dirname(self.get_ext_fullpath(ext.name)))
if not extdir.endswith(os.path.sep):
extdir += os.path.sep
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
cmake_args = [
f"-DPYTHON_EXECUTABLE={sys.executable}",
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_C_COMPILER=gcc",
"-DCMAKE_CXX_COMPILER=g++",
"-DXCSF_MAIN=OFF",
"-DXCSF_PYLIB=ON",
"-DENABLE_DOXYGEN=OFF",
"-DNATIVE_OPT=OFF",
]
build_args = [
"--config",
"Release",
]
if platform.system() == "Windows":
cmake_args += ["-DCMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE=" + extdir]
cmake_args += ["-GMinGW Makefiles"]
else:
cmake_args += ["-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=" + extdir]
build_args += ["-j4"]
subprocess.check_call(
["cmake", ext.sourcedir] + cmake_args, cwd=self.build_temp
)
self.announce("Building Python module", level=3)
subprocess.check_call(
["cmake", "--build", "."] + build_args, cwd=self.build_temp
)
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="xcsf",
version="1.1.6",
license="GPL-3.0",
maintainer="Richard Preen",
maintainer_email="rpreen@gmail.com",
description="XCSF learning classifier system: rule-based evolutionary machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rpreen/xcsf",
packages=find_packages(),
package_data={"xcsf": ["__init__.pyi"]},
ext_modules=[CMakeExtension("xcsf/xcsf")],
cmdclass={"build_ext": CMakeBuild},
zip_safe=False,
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
],
keywords=[
"divide and conquer",
"evolutionary algorithm",
"genetic programming",
"learning classifier system",
"least squares",
"machine learning",
"neural networks",
"neuroevolution",
"reinforcement learning",
"rule-based",
"supervised learning",
"stochastic gradient descent",
"XCS",
"XCSF",
],
)