Skip to main content

ambedded.ch ambedded-technology-lab python3 library

Project description

README

ambedded.ch ambedded-technology-lab python3 library

TODO

  • search for all TODO

changes

  • whenever you release a new version, remember to change setup.py version number!

basic construct

TODO

my_package/
│
├── module1/
│   ├── __init__.py
│   └── functions1.py
│
├── module2/
│   ├── __init__.py
│   └── functions2.py
│
├── main.py
│
└── setup.py

Building and Testing Locally

Before deploying, it's a good idea to test your package locally. You can do this by installing it in editable mode:

python3 -m venv .venv
. ./.venv/bin/activate
pip3 install -e .
python3 main.py

Deploying to PyPI

To deploy your package to PyPI, you'll need to register an account on the PyPI website if you haven't already. Once registered, you can use twine to upload your package.

First, install twine if you haven't already:

python3 -m venv .venv
. ./.venv/bin/activate
pip3 install twine
pip install wheel
python3 setup.py sdist bdist_wheel
twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

atl-0.2.tar.gz (2.0 kB view hashes)

Uploaded Source

Built Distribution

atl-0.2-py3-none-any.whl (2.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page