diff --git a/LICENSE.md b/LICENSE.txt similarity index 100% rename from LICENSE.md rename to LICENSE.txt diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 00fdaed..3a9465e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,8 @@ setup(name='hmc', version='0.1', description='Decision tree based hierachical multi-classifier', + url='https://github.com/davidwarshaw/hmc', author='David Warshaw', author_email='david.warshaw@gmail.com', - py_modules=['hmc', 'datasets', 'metrics'], + py_modules=['hmc.hmc', 'hmc.datasets', 'hmc.metrics'], requires=['sklearn', 'numpy', 'pandas'])