mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-20 04:50:45 +09:00
mnist 파티클 개수 75 -> 150 으로 조정 tensorboard 로 log 분석할 수 있게 수정 pypi 패키지 파일 제거 conda env 파일 tensorflow 2.12 -> 2.11
26 lines
706 B
Python
26 lines
706 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="pso2keras",
|
|
version="0.1.2",
|
|
description="Particle Swarm Optimization to tensorflow package",
|
|
author="pieroot",
|
|
author_email="jgbong0306@gmail.com",
|
|
url="https://github.com/jung-geun/PSO",
|
|
install_requires=[
|
|
"tqdm==4.65.0",
|
|
"tensorflow==2.11.0",
|
|
"keras==2.11.0",
|
|
"numpy",
|
|
"pandas",
|
|
"ipython",
|
|
],
|
|
packages=find_packages(exclude=[]),
|
|
keywords=["pso", "tensorflow", "keras"],
|
|
python_requires="==3.8",
|
|
package_data={},
|
|
zip_safe=False,
|
|
long_description=open("README.md", encoding="UTF8").read(),
|
|
long_description_content_type="text/markdown",
|
|
)
|