Metadata-Version: 2.1
Name: cyclic-a
Version: 0.0.2
Summary: A small package to test cyclic dependencies
Home-page: https://github.com/thibaultduponchelle/cyclic-a
Author: Thibault Duponchelle
Author-email: thibault.duponchelle@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/thibaultduponchelle/cyclic-a/issues
Platform: UNKNOWN
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

# Cyclic a

A module to test requirements

## Install
```bash
$ python3 -m pip install cyclic-a
```

## Usage 
```python3
from cyclic import a

a.a()
```

OR

```python3
from cyclic.a import a

a()
```


