Skip to content

Commit

Permalink
add setup for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
parvvaresh committed Jan 3, 2025
1 parent ecc4c72 commit c9286dd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions setup.py
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
)

0 comments on commit c9286dd

Please sign in to comment.