setup.py 349 B

123456789101112131415161718
  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.0.0',
  9. author='Chen haiyang',
  10. license='MIT',
  11. packages=['sim'],
  12. include_package_data=True,
  13. install_rerquires=['jieba', 'numpy'],
  14. )