forked from Blazej-Zielinski/detpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (53 loc) · 2.38 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
import setuptools
import os
import io
current_path = os.path.dirname(os.path.realpath(__file__))
with io.open(f"{current_path}/README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="detpy",
packages=setuptools.find_packages(),
package_data={
"detpy": ["functions/functions_info/*.json"],
},
version="1.0.11",
author="Szymon Ściegienny, Błażej Zieliński, Hubert Orlicki, Wojciech Książek",
author_email="[email protected]",
description="DetPy (Differential Evolution Tools): A Python toolbox for solving optimization problems "
"using differential evolution",
keywords=["optimization", "metaheuristics", "nature-inspired algorithms",
"evolutionary computation", "population-based algorithms",
"Stochastic optimization", "different evolution"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Blazej-Zielinski/detpy",
include_package_data=True,
license="GPLv3",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Benchmark",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
install_requires=["numpy", "opfunu", "matplotlib", "tqdm", "scipy"],
python_requires='>=3.7',
)