mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
23-07-13
mnist 파티클 개수 75 -> 150 으로 조정 tensorboard 로 log 분석할 수 있게 수정 pypi 패키지 파일 제거 conda env 파일 tensorflow 2.12 -> 2.11
This commit is contained in:
31
setup.py
31
setup.py
@@ -1,18 +1,25 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='pso2keras',
|
||||
version='0.1.1',
|
||||
description='Particle Swarm Optimization to tensorflow package',
|
||||
author='pieroot',
|
||||
author_email='jgbong0306@gmail.com',
|
||||
url='https://github.com/jung-geun/PSO',
|
||||
install_requires=['tqdm', 'numpy', 'tensorflow', 'keras'],
|
||||
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',
|
||||
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',
|
||||
)
|
||||
long_description=open("README.md", encoding="UTF8").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user