setup.py 956 B

1234567891011121314151617181920212223242526272829
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="strsimpy",
  6. version="0.1.5",
  7. description="A library implementing different string similarity and distance measures",
  8. long_description=long_description,
  9. long_description_content_type="text/markdown",
  10. url="https://github.com/luozhouyang/python-string-similarity",
  11. author="ZhouYang Luo",
  12. author_email="zhouyang.luo@gmail.com",
  13. packages=setuptools.find_packages(),
  14. include_package_data=True,
  15. install_requires=[],
  16. license="MIT License",
  17. classifiers=(
  18. "Programming Language :: Python :: 3",
  19. "Programming Language :: Python :: 3.5",
  20. "Programming Language :: Python :: 3.6",
  21. "Programming Language :: Python :: 3.7",
  22. "Programming Language :: Python :: 3.8",
  23. "License :: OSI Approved :: MIT License",
  24. "Operating System :: OS Independent",
  25. )
  26. )