diff --git a/ChangeLog b/ChangeLog index fa17527..2851489 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ Fri Apr 5 20:57:05 2019 +0200 Emmanuel Garette + * change filename/directory name with Python Packaging Autority + recommendations * do not change Config contexts properties when reload in MetaConfig (fixes #7) * add/remove config in mixconfig or metaconfig (fixes #6) diff --git a/lgpl-3.0.txt b/LICENSE.txt similarity index 100% rename from lgpl-3.0.txt rename to LICENSE.txt diff --git a/README b/README.rst similarity index 100% rename from README rename to README.rst diff --git a/test/__init__.py b/tests/__init__.py similarity index 100% rename from test/__init__.py rename to tests/__init__.py diff --git a/test/auto/__init__.py b/tests/auto/__init__.py similarity index 100% rename from test/auto/__init__.py rename to tests/auto/__init__.py diff --git a/test/auto/autopath.py b/tests/auto/autopath.py similarity index 100% rename from test/auto/autopath.py rename to tests/auto/autopath.py diff --git a/test/auto/test_auto.py b/tests/auto/test_auto.py similarity index 100% rename from test/auto/test_auto.py rename to tests/auto/test_auto.py diff --git a/test/autopath.py b/tests/autopath.py similarity index 100% rename from test/autopath.py rename to tests/autopath.py diff --git a/test/test_cache.py b/tests/test_cache.py similarity index 100% rename from test/test_cache.py rename to tests/test_cache.py diff --git a/test/test_choice_option.py b/tests/test_choice_option.py similarity index 100% rename from test/test_choice_option.py rename to tests/test_choice_option.py diff --git a/test/test_config.py b/tests/test_config.py similarity index 100% rename from test/test_config.py rename to tests/test_config.py diff --git a/test/test_config_api.py b/tests/test_config_api.py similarity index 100% rename from test/test_config_api.py rename to tests/test_config_api.py diff --git a/test/test_config_domain.py b/tests/test_config_domain.py similarity index 100% rename from test/test_config_domain.py rename to tests/test_config_domain.py diff --git a/test/test_config_ip.py b/tests/test_config_ip.py similarity index 100% rename from test/test_config_ip.py rename to tests/test_config_ip.py diff --git a/test/test_dereference.py b/tests/test_dereference.py similarity index 100% rename from test/test_dereference.py rename to tests/test_dereference.py diff --git a/test/test_duplicate_config.py b/tests/test_duplicate_config.py similarity index 100% rename from test/test_duplicate_config.py rename to tests/test_duplicate_config.py diff --git a/test/test_dyn_optiondescription.py b/tests/test_dyn_optiondescription.py similarity index 100% rename from test/test_dyn_optiondescription.py rename to tests/test_dyn_optiondescription.py diff --git a/test/test_freeze.py b/tests/test_freeze.py similarity index 100% rename from test/test_freeze.py rename to tests/test_freeze.py diff --git a/test/test_leadership.py b/tests/test_leadership.py similarity index 100% rename from test/test_leadership.py rename to tests/test_leadership.py diff --git a/test/test_mandatory.py b/tests/test_mandatory.py similarity index 100% rename from test/test_mandatory.py rename to tests/test_mandatory.py diff --git a/test/test_metaconfig.py b/tests/test_metaconfig.py similarity index 100% rename from test/test_metaconfig.py rename to tests/test_metaconfig.py diff --git a/test/test_mixconfig.py b/tests/test_mixconfig.py similarity index 100% rename from test/test_mixconfig.py rename to tests/test_mixconfig.py diff --git a/test/test_option.py b/tests/test_option.py similarity index 100% rename from test/test_option.py rename to tests/test_option.py diff --git a/test/test_option_callback.py b/tests/test_option_callback.py similarity index 100% rename from test/test_option_callback.py rename to tests/test_option_callback.py diff --git a/test/test_option_consistency.py b/tests/test_option_consistency.py similarity index 100% rename from test/test_option_consistency.py rename to tests/test_option_consistency.py diff --git a/test/test_option_default.py b/tests/test_option_default.py similarity index 100% rename from test/test_option_default.py rename to tests/test_option_default.py diff --git a/test/test_option_owner.py b/tests/test_option_owner.py similarity index 100% rename from test/test_option_owner.py rename to tests/test_option_owner.py diff --git a/test/test_option_setting.py b/tests/test_option_setting.py similarity index 100% rename from test/test_option_setting.py rename to tests/test_option_setting.py diff --git a/test/test_option_type.py b/tests/test_option_type.py similarity index 100% rename from test/test_option_type.py rename to tests/test_option_type.py diff --git a/test/test_option_username.py b/tests/test_option_username.py similarity index 100% rename from test/test_option_username.py rename to tests/test_option_username.py diff --git a/test/test_option_validator.py b/tests/test_option_validator.py similarity index 100% rename from test/test_option_validator.py rename to tests/test_option_validator.py diff --git a/test/test_option_with_special_name.py b/tests/test_option_with_special_name.py similarity index 100% rename from test/test_option_with_special_name.py rename to tests/test_option_with_special_name.py diff --git a/test/test_permissive.py b/tests/test_permissive.py similarity index 100% rename from test/test_permissive.py rename to tests/test_permissive.py diff --git a/test/test_requires.py b/tests/test_requires.py similarity index 100% rename from test/test_requires.py rename to tests/test_requires.py diff --git a/test/test_slots.py b/tests/test_slots.py similarity index 100% rename from test/test_slots.py rename to tests/test_slots.py diff --git a/test/test_state.py b/tests/test_state.py similarity index 100% rename from test/test_state.py rename to tests/test_state.py diff --git a/test/test_storage.py b/tests/test_storage.py similarity index 100% rename from test/test_storage.py rename to tests/test_storage.py diff --git a/test/test_submulti.py b/tests/test_submulti.py similarity index 100% rename from test/test_submulti.py rename to tests/test_submulti.py diff --git a/test/test_symlink.py b/tests/test_symlink.py similarity index 100% rename from test/test_symlink.py rename to tests/test_symlink.py