setup.py 365 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. import pathlib
  3. from setuptools import setup
  4. HERE = pathlib.Path(__file__).parent
  5. README = (HERE / 'README.md').read_text()
  6. setup(
  7. name='short-text-sim',
  8. version='1.1.0',
  9. author='Chen Haiyang',
  10. license='MIT',
  11. packages=['sim'],
  12. include_package_data=True,
  13. install_requires=['jieba', 'numpy', 'scikit-learn'],
  14. )