Files
PSO/setup.py
jung-geun 9c909cc3bc 23-09-04
pypi 패키지 배포 테스트 4
2023-09-04 15:08:59 +09:00

30 lines
729 B
Python

from setuptools import setup, find_packages
import pso
VERSION = pso.__version__
setup(
name="pso2keras",
version=VERSION,
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",
"pandas",
"ipython",
"tensorflow<=2.11.1",
"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(),
long_description_content_type="text/markdown",
)