chore: 업데이트된 패키지 요구사항 반영

requirements.txt 파일에서 패키지 요구사항을 업데이트했습니다.
This commit is contained in:
jung-geun
2024-05-16 02:11:31 +09:00
parent 4a6a48d6aa
commit 737baf6681
4 changed files with 183 additions and 325 deletions

View File

@@ -1,9 +1,14 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup
import pso
VERSION = pso.__version__
def get_requirements(path: str):
return [l.strip() for l in open(path)]
setup(
name="pso2keras",
version=VERSION,
@@ -11,17 +16,7 @@ setup(
author="pieroot",
author_email="jgbong0306@gmail.com",
url="https://github.com/jung-geun/PSO",
install_requires=[
"tqdm",
"numpy",
"pandas",
"ipython",
"matplotlib",
"tensorflow",
"keras",
"scikit-learn",
"tensorboard",
],
install_requires=get_requirements("requirements.txt"),
packages=find_packages(exclude=[]),
keywords=[
"pso",