If you want to get your project on pip you should make a setup.py. You should also do this so you can register the projects name so no one else takes it.
setup.py does not like the current directory being the package. You should restructure your repository
If you want to get your project on pip you should make a setup.py. You should also do this so you can register the projects name so no one else takes it.
setup.py
does not like the current directory being the package. You should restructure your repositorypydeck/
README.md
setup.py
pydeck/
__init__.py
base.py
cribbage.py
standard.py
tests/
__init__.py
test_base.py
test_cribbage.py
test_standard.py
Here is a some good articles about this http://as.ynchrono.us/2007/12/filesystem-structure-of-python-project_21.html and http://blog.habnab.it/blog/2013/07/21/python-packages-and-you/