-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecc4c72
commit c9286dd
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="cluster_ga", # Name of your package | ||
version="0.1", # Version of your package | ||
author="Alireza Parvaresh", | ||
author_email="[email protected]", | ||
description="This Python script implements a genetic algorithm for clustering data. The algorithm optimizes the cluster assignments of data points using a genetic approach, aiming to improve the silhouette score. The silhouette score is a measure of how well-defined the clusters are in the data.", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", # This is optional | ||
url="https://github.com/parvvaresh/clustering-with-genetic", # Link to your package’s homepage | ||
packages=find_packages(), # Automatically find and include packages in your directory | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires=">=3.6", # Adjust Python version as needed | ||
) |