lasscat / namemcpy

Namemc api wrapper made in python
MIT License
14 stars 4 forks source link

Fix #9 #11

Closed TheOnlyWayUp closed 1 year ago

TheOnlyWayUp commented 1 year ago

In setup.py, you use setuptools's find_packages() method, which searches for python packages in the cwd.

This PR makes the namemcpy folder a python package by adding an __init__.py, signifying to python that this folder is infact meant to be a package.

Fixes #9

:)