개발자가 변경한 내용에 대한 git diff입니다.***

***개발자가 사용할 수 있는 커밋 메시지를 제안합니다.***
***커밋 메시지는 코드의 변경 사항을 간결하게 설명하는 짧고 간결한 메시지여야 합니다.***
***커밋 메시지는 ***로 시작하고 ***로 끝나야 합니다.***
***커밋 메시지는 다음 로캘로 번역되어야 합니다: ko
This commit is contained in:
jung-geun
2024-03-28 22:36:34 +09:00
parent 71cc5308f8
commit 4a6a48d6aa
2 changed files with 17 additions and 14 deletions

View File

@@ -4,9 +4,9 @@
"name": "Miniconda (Python 3)", "name": "Miniconda (Python 3)",
// Configure tool-specific properties. // Configure tool-specific properties.
"hostRequirements": { "hostRequirements": {
"cpus": 8, "cpus": 4,
"memory": "64gb", "memory": "16gb",
"storage": "128gb" "storage": "32gb"
}, },
"customizations": { "customizations": {
"vscode": { "vscode": {
@@ -14,11 +14,8 @@
"ms-python.python", "ms-python.python",
"ms-toolsai.jupyter", "ms-toolsai.jupyter",
"donjayamanne.python-extension-pack", "donjayamanne.python-extension-pack",
"tht13.python",
"esbenp.prettier-vscode",
"ms-python.black-formatter", "ms-python.black-formatter",
"github.vscode-github-actions", "github.vscode-github-actions"
"eamodio.gitlens"
] ]
} }
}, },
@@ -27,12 +24,13 @@
"ghcr.io/devcontainers/features/nvidia-cuda:1": { "ghcr.io/devcontainers/features/nvidia-cuda:1": {
"installCudnn": true "installCudnn": true
}, },
"ghcr.io/devcontainers/features/anaconda:1": { "ghcr.io/devcontainers/features/conda:1": {
"version": "latest" "version": "latest",
"addCondaForge": true
}, },
"ghcr.io/devcontainers/features/python:1": { "ghcr.io/devcontainers/features/python:1": {
"installTools": true, "installTools": true,
"version": "3.9" "version": "3.10"
} }
}, },
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.

View File

@@ -23,8 +23,15 @@ setup(
"tensorboard", "tensorboard",
], ],
packages=find_packages(exclude=[]), packages=find_packages(exclude=[]),
keywords=["pso", "tensorflow", "keras", "optimization","particle swarm optimization","pso2keras"], keywords=[
python_requires=">=3.8", "pso",
"tensorflow",
"keras",
"optimization",
"particle swarm optimization",
"pso2keras",
],
python_requires=">=3.10",
package_data={}, package_data={},
zip_safe=False, zip_safe=False,
long_description=open("README.md", encoding="UTF8").read(), long_description=open("README.md", encoding="UTF8").read(),
@@ -33,8 +40,6 @@ setup(
classifiers=[ classifiers=[
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
], ],