-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
51 lines (41 loc) · 1.58 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/python
# -*- coding:UTF-8 -*-
# -----------------------------------------------------------------------#
# File Name: setup
# Author: Junyi Li
# Mail: [email protected]
# Created Time: 2021-01-30
# Description:
# -----------------------------------------------------------------------#
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import distutils.text_file
from pathlib import Path
from typing import List
import setuptools
from version import __version__
with open('README.md', 'r', encoding='UTF-8') as f:
long_description = f.read()
def _parse_requirements(filename: str) -> List[str]:
"""Return requirements from requirements file."""
# Ref: https://stackoverflow.com/a/42033122/
return distutils.text_file.TextFile(filename=str(Path(__file__).with_name(filename))).readlines()
setuptools.setup(
name='knlp',
version=__version__,
author='Junyi Li',
author_email='[email protected]',
description='KUAI SU(Quickly use) Python toolkit for Chinese Language Processing.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/global-nlp/knlp.git',
package_data={'': ['*.md', '*.txt', '*.marshal', '*.marshal.3']},
include_package_data=True,
packages=setuptools.find_packages(exclude=('test*',)),
install_requires=_parse_requirements('requirements.txt'),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'],
)