An ORM for Python
Project description
article i followed for creating a package
https://mathspp.com/blog/how-to-create-a-python-package-in-2022
first, we need pipx in order to install poetry
python -m pip install --user pipx
make sure the right python scripts folder is in the PATH env varaible on windows
pipx install poetry
#update the PATH env pipx ensurepath
reload the shell
for a new project, run 'poetry new .' in the new empty directory
for an existing project, type the below in the the directory and follow the prompts
poetry init
now run install
poetry install
do the git stuff if a new project that's not on git yet
git init git add * git commit -m "First commit" git branch -M main git remote add origin https://github.com/JamesRandell/ivypy.git git push -u origin main
more poetry stuff
poetry add -D pre-commit
poetry config repositories.testpypi https://test.pypi.org/legacy/
#api token
test account
poetry config http-basic.testpypi token test-token-here
poetry build poetry publish -r testpypi
live account
poetry config pypi-token.pypi live-token-here
poetry publish --build
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ivyorm-0.1.9.tar.gz.
File metadata
- Download URL: ivyorm-0.1.9.tar.gz
- Upload date:
- Size: 43.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.11.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea6937906cae19b9c8c2aaeb0664ef6c273a1b5708c79809a35710d581c8aec
|
|
| MD5 |
7eed8feb792f6ecc074ef521a35f2d76
|
|
| BLAKE2b-256 |
5c210e8e1c05a53e4a4d91975799cfe3b128dafba5f3ea199c793e05266fba7e
|
File details
Details for the file ivyorm-0.1.9-py3-none-any.whl.
File metadata
- Download URL: ivyorm-0.1.9-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.11.1 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a44ab04ee5ee5a604fdffc178c783a51118f9500bbacb731fcd3642c28089c22
|
|
| MD5 |
ab454b172052684dd031d3f08a4abe38
|
|
| BLAKE2b-256 |
cbfc22424466e3ee5b9ccdabee78670bcc5d0038d9ae773c7059d45a786c43e2
|