mirror of
https://github.com/jung-geun/PSO.git
synced 2025-12-19 20:44:39 +09:00
개발자가 변경한 내용에 대한 git diff입니다.***
***개발자가 사용할 수 있는 커밋 메시지를 제안합니다.*** ***커밋 메시지는 코드의 변경 사항을 간결하게 설명하는 짧고 간결한 메시지여야 합니다.*** ***커밋 메시지는 ***로 시작하고 ***로 끝나야 합니다.*** ***커밋 메시지는 다음 로캘로 번역되어야 합니다: ko
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
"name": "Miniconda (Python 3)",
|
||||
// Configure tool-specific properties.
|
||||
"hostRequirements": {
|
||||
"cpus": 8,
|
||||
"memory": "64gb",
|
||||
"storage": "128gb"
|
||||
"cpus": 4,
|
||||
"memory": "16gb",
|
||||
"storage": "32gb"
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
@@ -14,11 +14,8 @@
|
||||
"ms-python.python",
|
||||
"ms-toolsai.jupyter",
|
||||
"donjayamanne.python-extension-pack",
|
||||
"tht13.python",
|
||||
"esbenp.prettier-vscode",
|
||||
"ms-python.black-formatter",
|
||||
"github.vscode-github-actions",
|
||||
"eamodio.gitlens"
|
||||
"github.vscode-github-actions"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -27,12 +24,13 @@
|
||||
"ghcr.io/devcontainers/features/nvidia-cuda:1": {
|
||||
"installCudnn": true
|
||||
},
|
||||
"ghcr.io/devcontainers/features/anaconda:1": {
|
||||
"version": "latest"
|
||||
"ghcr.io/devcontainers/features/conda:1": {
|
||||
"version": "latest",
|
||||
"addCondaForge": true
|
||||
},
|
||||
"ghcr.io/devcontainers/features/python:1": {
|
||||
"installTools": true,
|
||||
"version": "3.9"
|
||||
"version": "3.10"
|
||||
}
|
||||
},
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||
|
||||
13
setup.py
13
setup.py
@@ -23,8 +23,15 @@ setup(
|
||||
"tensorboard",
|
||||
],
|
||||
packages=find_packages(exclude=[]),
|
||||
keywords=["pso", "tensorflow", "keras", "optimization","particle swarm optimization","pso2keras"],
|
||||
python_requires=">=3.8",
|
||||
keywords=[
|
||||
"pso",
|
||||
"tensorflow",
|
||||
"keras",
|
||||
"optimization",
|
||||
"particle swarm optimization",
|
||||
"pso2keras",
|
||||
],
|
||||
python_requires=">=3.10",
|
||||
package_data={},
|
||||
zip_safe=False,
|
||||
long_description=open("README.md", encoding="UTF8").read(),
|
||||
@@ -33,8 +40,6 @@ setup(
|
||||
classifiers=[
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user