Metadata-Version: 2.1
Name: atl
Version: 1.0
Summary: ambedded.ch ambedded-technology-lab python3 library
Home-page: https://gitlab.com/ambedded-labs/al-pypi-ambedded-atl
Author: ambedded.ch
Author-email: info@ambedded.ch
License: GNU GENERAL PUBLIC LICENSE
        Version 2, June 1991
        
        This license is the GPLv2-only license as published by the Free Software
        Foundation. The GPLv2-only license text is available at
        https://www.gnu.org/licenses/gpl-2.0.html
        
        You should have received a copy of the GNU General Public License along with
        this program. If not, see <https://www.gnu.org/licenses/>.
        
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: setuptools
Requires-Dist: cryptocompare
Requires-Dist: numpy
Requires-Dist: pycryptodome

# README

> ambedded.ch ambedded-technology-lab python3 library

## basic construct

```bash
my_package/
│
├── module1/
│   ├── __init__.py
│   └── functions1.py
│
├── module2/
│   ├── __init__.py
│   └── functions2.py
│
├── main.py
│
└── setup.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.

Edit setup.py (Version,..) and requirements.txt before uploading!

### token auth

> To use this API token:
> Set your username to __token__
> Set your password to the token value, including the pypi- prefix
> For example, if you are using Twine to upload multiple projects to PyPI, > you can set up your $HOME/.pypirc file like this:

```txt
[distutils]
  index-servers =
    pypi

[pypi]
  username = __token__
  password = # either a user-scoped token or a project-scoped token you want to set as the default
```
