
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Package manager for python based on pip3
Solve the main problem of pip - fucking horrible deps.
Just try it, and you will understand it.
All your project config and deps will store in .ezdeps.json
like this:
{
"name": "ezdeps",
"version": "1.0.4",
"description": "Package manager for python",
"documentation_path": "./README.md",
"author": {
"name": "Vitaly Kisel <jellyb0y>",
"email": "kisel@internet.ru"
},
"scripts": [
"./scripts/ezdeps"
],
"dependencies": {
"pip": "^20.0.0",
"wheel": "0.36.2",
"twine": "3.4.1"
},
"dev_dependencies": {},
"python_requires": ">=3.8",
"classifiers": [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
"include_package_data": true
}
You don't more need use setuptools
, it is already in it.
Install package: pip install ezdeps
Common usage:
ezdeps <command> [options] [packages]
Commands:
install
- Install packages
<-S | --default>? [packages, ...]
Install packages to default dependencies<-D | --development> [packages, ...]
Install packages to dev_dependencies<-A | --all>
Install packages from dependency list .ezdeps.json
uninstall
- Uninstall packages
[packages, ...]
Uninstall packages from depsupdate
- Update packages
[packages, ...]
Update packages in depsbuild
- Build package
publish
- Publish packages
<-C | --clear>
Clear temp files after publishing<-R | --repository>
Set up repository name in your .ezdepsrc
<--repository-url> [url]
Set up repository url<--username> [username]
Set up registry username<--password> [password]
Set up registry passwordCommon options:
- <-J | --without-json>
Do not write json file
.ezdepsrc
To store your keys and tokens you have to create ~/.ezdepsrc
file:
[gitlab.com]
USER=myuser # Test user for gitlab regitsry
PASSWORD=topsecret # Test passwd for gitlab regitsry
[github.com]
USER=myuser # Test user for github regitsry
PASSWORD=topsecret # Test passwd for github regitsry
REPOSITORY_URL=https://example.com/ # regitsry url for github (optional)
REPOSITORY_NAME=github # regitsry name (optional) to rewrite `github.com` to `github`
e (optional) to rewrite `github.com` to `github`
FAQs
Package manager for python
We found that ezdeps demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.