Metadata-Version: 2.1
Name: test-geometry
Version: 0.0.1
Summary: Package for testing pip uploading
Author-email: Andrey Bessalov <author@example.com>
Project-URL: Homepage, https://github.com/abessalov/test_geometry
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Package for testing pip uploading

Package for the first pip project with some simple code.

## Instructions

1. Install:

```
pip install test_geometry
```

2. Testing script:

```python
import test_geometry.planimetry as pl
import test_geometry.stereometry as st

# Create circle
c1 = pl.Circle(1)
print(c1.square())

# Create ball    
c2 = st.Ball(1)
print(c2.V())
```
