Metadata-Version: 2.1
Name: dojo2py
Version: 0.12
Summary: A python dojo package
Home-page: https://github.com/leovanzella/dojo2py
Author: Leonardo Vanzella
Author-email: leovanzella@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# dojo-python


```python
import unittest


class DojoTest(unittest.TestCase):
    def test_true(self):
        self.assertTrue(True)


if __name__ == '__main__':
    unittest.main()

```

