Metadata-Version: 2.1
Name: tpp_guille_santi_commons
Version: 0.0.2
Summary: Comons package for our TPP
Home-page: https://github.com/tpp-guille-santi/commons
Author: Santiago Gandolfo
Author-email: sgandolfo@fi.uba.ar
Project-URL: Bug Tracker, https://github.com/tpp-guille-santi/commons/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# commons

## Build guide

### Make sure you have upgraded version of pip
Windows
```
py -m pip install --upgrade pip
```

Linux/MAC OS
```
python3 -m pip install --upgrade pip
```


### Make sure your build tool is up to date
Windows
```
py -m pip install --upgrade build
```
Linux/MAC OS
```
python3 -m pip install --upgrade build
```


### Create the build
Windows
```
py -m build
```
Linux/MAC OS
```
python3 -m build
```

### Uploading the distribution archives
Windows
```
py -m pip install --upgrade twine
```
Linux/MAC OS
```
python3 -m pip install --upgrade twine
```

Once installed, run Twine to upload all of the archives under dist:

Windows
```
py -m twine upload --repository testpypi dist/*
```
Linux/MAC OS
```
python3 -m twine upload --repository testpypi dist/*
```










### References
https://packaging.python.org/tutorials/packaging-projects/
