-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·63 lines (59 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python3
"""Sanzang setup script for packaging and installation."""
from distutils.core import setup
with open('README.rst', 'r', encoding='utf-8') as fin:
LONG_DESCRIPTION = fin.read()
setup(
#
# Basic information
#
name='sanzang',
version='1.3.4',
author='yaoguai',
url='https://github.com/yaoguai/sanzang',
license='MIT',
#
# Descriptions & classifiers
#
description='CAT tool for Chinese, Japanese, or Korean.',
long_description=LONG_DESCRIPTION,
keywords='chinese japanese korean cjk',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Religion',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
'Topic :: Utilities'],
#
# Included Python files
#
scripts=[
'szu-ed',
'szu-r',
'szu-ss',
'szu-t'],
py_modules=[
'szu_ed',
'szu_r',
'szu_ss',
'szu_t'],
data_files=[
('share/doc/sanzang', [
'AUTHORS.rst',
'CHANGELOG.rst',
'LICENSE.rst',
'README.rst']),
('share/man/man1', [
'szu-ed.1',
'szu-r.1',
'szu-ss.1',
'szu-t.1'])]
)