diff --git a/README.rst b/README.rst index 81f24cf..a860d1f 100644 --- a/README.rst +++ b/README.rst @@ -91,6 +91,20 @@ Synchronize tree of organizational units and people between two LDAP directories Changelog ========= +0.17 +---- +* Python3 compatibility +* fix test certificates + +0.16 +---- +* add test certificates + +0.15 +---- +* add support testing with TLS +* filter objectclass from sources, keep only known ones + 0.14 ---- * fix default ACL when creating slapd server diff --git a/setup.py b/setup.py index 5b25a42..9144564 100755 --- a/setup.py +++ b/setup.py @@ -60,4 +60,10 @@ setup(name="ldaptools", 'console_scripts': ['ldapsync=ldaptools.ldapsync.cmd:main'], }, zip_safe=False, + classifiers=[ + "License :: OSI Approved :: MIT License", + "Topic :: System :: Systems Administration :: Authentication/Directory", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + ], cmdclass={'sdist': eo_sdist})