setup.py 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. import setuptools
  2. setuptools.setup(
  3. name="ldap-user-transfer",
  4. version="1.0.0",
  5. author="Furkan Kalkan",
  6. author_email="furkankalkan@mantis.com.tr",
  7. description="Script for transferring LDAP users from Postgresql database.",
  8. long_description=open("README.md").read(),
  9. long_description_content_type="text/markdown",
  10. platforms="all",
  11. url="https://github.com/mantis-software-company/ldap-user-transfer",
  12. classifiers=[
  13. "License :: OSI Approved :: Apache Software License",
  14. "Topic :: Internet",
  15. "Topic :: Software Development",
  16. "Topic :: Software Development :: Testing",
  17. "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP",
  18. "Intended Audience :: Developers",
  19. "Operating System :: MacOS",
  20. "Operating System :: POSIX",
  21. "Operating System :: Microsoft",
  22. "Programming Language :: Python",
  23. "Programming Language :: Python :: 3.6",
  24. "Programming Language :: Python :: 3.7",
  25. "Programming Language :: Python :: 3.8"
  26. ],
  27. install_requires=['python-ldap', 'PyYAML', 'psycopg2-binary'],
  28. python_requires=">3.6.*, <4",
  29. scripts=['src/ldap-user-transfer']
  30. )