123456789101112131415161718 |
- # -*- coding: utf-8 -*-
- import pathlib
- from setuptools import setup
- HERE = pathlib.Path(__file__).parent
- README = (HERE / 'README.md').read_text()
- setup(
- name='kwextraction',
- version='0.1.0',
- author='Chen Haiyang',
- license='MIT',
- packages=['kwextraction'],
- include_package_data=True,
- install_requires=['requests']
- )
|