setup.py 347 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='kwextraction',
  8. version='0.1.0',
  9. author='Chen Haiyang',
  10. license='MIT',
  11. packages=['kwextraction'],
  12. include_package_data=True,
  13. install_requires=['requests']
  14. )