mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-20 04:50:45 +09:00
17 lines
554 B
Python
17 lines
554 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='pso-keras',
|
|
version='0.1.0',
|
|
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'],
|
|
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(),
|
|
) |