mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
chore: 업데이트된 패키지 요구사항 반영
requirements.txt 파일에서 패키지 요구사항을 업데이트했습니다.
This commit is contained in:
19
setup.py
19
setup.py
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user