Metadata-Version: 2.1
Name: vk_pygeom
Version: 1.0.4
Summary: This is a collection of geometry related python packages
Author-email: vk2gpz <vk2gpz@gmail.com>
Project-URL: Homepage, https://github.com/vk2gpz/vk_pygeom
Project-URL: Issues, https://github.com/vk2gpz/vk_pygeom/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# vk_pygeom
This is a collection of geometry related python packages

# License
This software is released under the condition described in the LICENSE.

## install
```
python3 -m pip install vk_pygeom
```
or
```
pip install git+ssh://git@github.com/vk2gpz/vk_pygeom.git
```
(notice that ':' in "pip install git+ssh://git@github.com:vk2gpz/vk_pygeom.git" needs to be changed to '/')


## test
python
```
>>> import vk.geom.grid.geodesicdome as gd
>>> gd.main()
```

## build distribution archive
```
python3 -m pip install --upgrade build
python3 -m build
```

## uploading the distribution archive (change testpypi to pypi for official upload)
```
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
```
