Nothing-pip

Latest version: v0.3.3

Safety actively analyzes 622475 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 2

3.11

3.10

3.9

3.8

3.7

3.6

22. /Users/m2/Library/Application Support/pdm/venv/bin/python (3.9)
Please select (0):
Would you like to create a virtualenv with /Users/m2/.pyenv/versions/3.9.17/bin/python3? [y/n] (y):
Virtualenv is created successfully at /Users/m2/code/pd24/edu-pd24/.venv
Is the project a library that is installable?
If yes, we will need to ask a few more questions to include the project name and build backend [y/n] (n):
License(SPDX name) (MIT):
Author name (dmario24):
Author email (becky2sawyergmail.com): data.mario24gmail.com
Python requires('*' to allow any) (>=3.9):
Project is initialized successfully
$ tree
.
├── README.md
├── __pycache__
│   └── __init__.cpython-39.pyc
├── pyproject.toml
├── src
│   └── nothing_pip
│   ├── __init__.py
│   └── __pycache__
│   └── __init__.cpython-39.pyc
└── tests
├── __init__.py
└── __pycache__
└── __init__.cpython-39.pyc

6 directories, 7 files
$ vi .gitignore
$ git init
/Users/m2/code/pd24/edu-pd24/.git/ 안의 빈 깃 저장소를 다시 초기화했습니다
$ git status
현재 브랜치 main

아직 커밋이 없습니다

추적하지 않는 파일:
(커밋할 사항에 포함하려면 "git add <파일>..."을 사용하십시오)
.gitignore
README.md
pyproject.toml
src/
tests/

커밋할 사항을 추가하지 않았지만 추적하지 않는 파일이 있습니다 (추적하려면 "git
add"를 사용하십시오)
$ git config user.name dmario24
$ git config user.email data.mario24gmail.com
$ git add .
$ git commit -m "python pdm init"
[main (최상위-커밋) dcac4e7] python pdm init
5 files changed, 175 insertions(+)
create mode 100644 .gitignore
create mode 100644 README.md
create mode 100644 pyproject.toml
create mode 100644 src/nothing_pip/__init__.py
create mode 100644 tests/__init__.py
$

Page 1 of 2

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.