Skip to content

Commit 8f7bb4c

Browse files
setup
1 parent 8c1d3a8 commit 8f7bb4c

20 files changed

+23
-21
lines changed
-17.4 KB
Binary file not shown.
-17.4 KB
Binary file not shown.
-15 KB
Binary file not shown.
-15 KB
Binary file not shown.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
# There are some restrictions on what makes a valid project name
2929
# specification here:
3030
# https://packaging.python.org/specifications/core-metadata/#name
31-
name="optimisation-algorithms", # Required
31+
name="optimisation_algorithms", # Required
3232
# Versions should comply with PEP 440:
3333
# https://www.python.org/dev/peps/pep-0440/
3434
#
3535
# For a discussion on single-sourcing the version across setup.py and the
3636
# project code, see
3737
# https://packaging.python.org/guides/single-sourcing-package-version/
38-
version="1.4.0", # Required
38+
version="1.1.0", # Required
3939
# This is a one-line description or tagline of what your project does. This
4040
# corresponds to the "Summary" metadata field:
4141
# https://packaging.python.org/specifications/core-metadata/#summary
@@ -102,7 +102,7 @@
102102
# Note that this is a list of additional keywords, separated
103103
# by commas, to be used to assist searching for the distribution in a
104104
# larger catalog.
105-
keywords="optimisation-algorithms-algorithms, algorithms, metaheuristic,ML", # Optional
105+
keywords="optimisation, optimization algorithms, algorithms, metaheuristic, ML", # Optional
106106
# When your source code is in a subdirectory under the project root, e.g.
107107
# `src/`, it is necessary to specify the `package_dir` argument.
108108
package_dir={"": "src"}, # Optional

src/optimisation_algorithms.egg-info/PKG-INFO

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Metadata-Version: 2.1
22
Name: optimisation-algorithms
3-
Version: 1.0.3
3+
Version: 1.1.0
44
Summary: A collection of the most commonly used Optimisation Algorithms for Data Science & Machine Learning
55
Home-page: https://github.com/Muradmustafayev-03/Optimisation-Algorithms
66
Author: Murad Mustafayev
77
Author-email: [email protected]
88
Project-URL: Bug Reports, https://github.com/Muradmustafayev-03/Optimisation-Algorithms/issues
99
Project-URL: Funding, https://donate.pypi.org
1010
Project-URL: Source, https://github.com/Muradmustafayev-03/Optimisation-Algorithms/
11-
Keywords: optimisation,algorithms,metaheuristic,ML
11+
Keywords: optimisation,optimization algorithms,algorithms,metaheuristic,ML
1212
Classifier: Development Status :: 3 - Alpha
1313
Classifier: Intended Audience :: Science/Research
1414
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
@@ -34,7 +34,11 @@ Contributing guide: https://github.com/Muradmustafayev-03/Optimisation-Algorithm
3434

3535
To report any issues: https://github.com/Muradmustafayev-03/Optimisation-Algorithms/issues
3636

37-
To install the package as a library use: ***pip install optimisation-algorithms***
37+
To install the package as a library use:
38+
> *pip install optimisation-algorithms*
39+
40+
Then to import:
41+
> *import optimisation-algorithms*
3842

3943
---
4044

src/optimisation_algorithms.egg-info/SOURCES.txt

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,19 @@ src/Optimisation_Algorithms.egg-info/SOURCES.txt
66
src/Optimisation_Algorithms.egg-info/dependency_links.txt
77
src/Optimisation_Algorithms.egg-info/requires.txt
88
src/Optimisation_Algorithms.egg-info/top_level.txt
9-
src/optimisation/__init__.py
10-
src/optimisation/benchmark_functions/__init__.py
11-
src/optimisation/benchmark_functions/bowl_shape.py
12-
src/optimisation/benchmark_functions/gradients.py
13-
src/optimisation/benchmark_functions/imports.py
14-
src/optimisation/benchmark_functions/many_local_minimums.py
15-
src/optimisation/benchmark_functions/other.py
16-
src/optimisation/benchmark_functions/tests.py
17-
src/optimisation/iterative_algorithms/GradientDescent.py
18-
src/optimisation/iterative_algorithms/__init__.py
19-
src/optimisation/metaheuristic_algorithms/GeneticAlgorithm.py
20-
src/optimisation/metaheuristic_algorithms/HarmonySearch.py
21-
src/optimisation/metaheuristic_algorithms/__init__.py
9+
src/optimisation_algorithms/GeneticAlgorithm.py
10+
src/optimisation_algorithms/GradientDescent.py
11+
src/optimisation_algorithms/HarmonySearch.py
12+
src/optimisation_algorithms/__init__.py
2213
src/optimisation_algorithms.egg-info/PKG-INFO
2314
src/optimisation_algorithms.egg-info/SOURCES.txt
2415
src/optimisation_algorithms.egg-info/dependency_links.txt
2516
src/optimisation_algorithms.egg-info/requires.txt
26-
src/optimisation_algorithms.egg-info/top_level.txt
17+
src/optimisation_algorithms.egg-info/top_level.txt
18+
src/optimisation_algorithms/benchmark_functions/__init__.py
19+
src/optimisation_algorithms/benchmark_functions/bowl_shape.py
20+
src/optimisation_algorithms/benchmark_functions/gradients.py
21+
src/optimisation_algorithms/benchmark_functions/imports.py
22+
src/optimisation_algorithms/benchmark_functions/many_local_minimums.py
23+
src/optimisation_algorithms/benchmark_functions/other.py
24+
src/optimisation_algorithms/benchmark_functions/tests.py
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
optimisation
1+
optimisation_algorithms
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)