0.0.1 released
This commit is contained in:
parent
8b4c9c10a8
commit
357225ba49
10 changed files with 70 additions and 8 deletions
8
LICENSE
8
LICENSE
|
@ -1,7 +1 @@
|
|||
Copyright (C) 2016 Yoxem Chen (aka Kian-ting Tan)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
Please see ./findarray30code/LICENSE.
|
14
MANIFEST
Normal file
14
MANIFEST
Normal file
|
@ -0,0 +1,14 @@
|
|||
# file GENERATED by distutils, do NOT edit
|
||||
LICENSE
|
||||
README
|
||||
setup.py
|
||||
bin/findarray30code
|
||||
findarray30code/LICENSE
|
||||
findarray30code/__init__.py
|
||||
findarray30code/__version__.py
|
||||
findarray30code/ui.py
|
||||
findarray30code/ui2.py
|
||||
findarray30code/tables/array30_27489-V201509.txt
|
||||
findarray30code/tables/array30_Ext E_V2016A.txt
|
||||
findarray30code/tables/array30_ExtB_V2016A.txt
|
||||
findarray30code/tables/array30_ExtCD_V2013A.txt
|
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
|
@ -0,0 +1 @@
|
|||
include LICENSE
|
32
README
32
README
|
@ -1 +1,31 @@
|
|||
code-searcher for Array30, a chinese input method. under X11 license
|
||||
Summary
|
||||
---------------
|
||||
Code-searcher for Array30, a chinese input method. under X11 license
|
||||
It supports CJK characters, incl. Extension A-E.
|
||||
|
||||
Dependencies
|
||||
----------------
|
||||
* Python >= 3.4 (with ``sqlite3'' module)
|
||||
* Python3-PyQt4 >= 4.11
|
||||
* sqlite3 module for Python 3.4
|
||||
* libQt >= 4.8.5
|
||||
* pip3 (recommented)
|
||||
* Hanazono Font (for some characters in Extention blocks)
|
||||
|
||||
Install (Under *nix)
|
||||
-----------------------------
|
||||
|
||||
# Install the dependencies above
|
||||
# download the zip file of all the source code, and extract it.
|
||||
# open a terminal and enter the main folder of the source code, then key in:
|
||||
|
||||
./setup.py install
|
||||
|
||||
# If the depended packages listed above can be install on windows, it may be executed on Windows (I'm not so sure).
|
||||
|
||||
Remove
|
||||
---------------
|
||||
|
||||
It's recommented to remove it with ``pip3''. Please use the command after being sure that you have the authority to access the folder:
|
||||
|
||||
pip3 uninstall findarray30code
|
5
bin/findarray30code
Executable file
5
bin/findarray30code
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
#-*-coding:utf-8-*-
|
||||
import findarray30code
|
||||
|
||||
findarray30code.main()
|
BIN
findarray30code/tables/array30_27489-V201509.txt
Normal file
BIN
findarray30code/tables/array30_27489-V201509.txt
Normal file
Binary file not shown.
BIN
findarray30code/tables/array30_Ext E_V2016A.txt
Normal file
BIN
findarray30code/tables/array30_Ext E_V2016A.txt
Normal file
Binary file not shown.
BIN
findarray30code/tables/array30_ExtB_V2016A.txt
Normal file
BIN
findarray30code/tables/array30_ExtB_V2016A.txt
Normal file
Binary file not shown.
BIN
findarray30code/tables/array30_ExtCD_V2013A.txt
Normal file
BIN
findarray30code/tables/array30_ExtCD_V2013A.txt
Normal file
Binary file not shown.
18
setup.py
Executable file
18
setup.py
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
#-*-coding:utf-8-*-
|
||||
from distutils.core import setup
|
||||
from findarray30code.__version__ import __version__
|
||||
|
||||
setup(
|
||||
name='FindArray30Code',
|
||||
version=__version__,
|
||||
author='Yoxem Chen',
|
||||
url="https://github.com/Yoxem/findarray30code",
|
||||
requires=['PyQt4'],
|
||||
packages=['findarray30code',],
|
||||
license='X11 License',
|
||||
long_description=open('README').read(),
|
||||
package_data={'findarray30code': ['tables/*' , 'LICENSE'],
|
||||
},
|
||||
scripts=['bin/findarray30code'],
|
||||
)
|
Loading…
Reference in a new issue