opener-coreference-base 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +0,0 @@
1
- ## version = 0.2
2
- ## Added timestamp to function addLinguisitcProcessor
3
- ## 24-april-2013 --> getSingleEntieies and getSingleProperties reads both entities/props in format
4
- ## entities -> entity -> span -> target and entities -> entity -> references -> span
5
- ####
6
-
7
- from KafParserMod import KafParser
@@ -1,38 +0,0 @@
1
- require 'opener/build-tools'
2
-
3
- include Opener::BuildTools::Requirements
4
- include Opener::BuildTools::Python
5
- include Opener::BuildTools::Files
6
-
7
- # Directory where packages will be installed to.
8
- PYTHON_SITE_PACKAGES = File.expand_path(
9
- '../../../core/site-packages',
10
- __FILE__
11
- )
12
-
13
- # Directory containing the temporary files.
14
- TMP_DIRECTORY = File.expand_path('../../../tmp', __FILE__)
15
-
16
- # Path to the pip requirements file used to install requirements before
17
- # packaging the Gem.
18
- PRE_BUILD_REQUIREMENTS = File.expand_path(
19
- '../../../pre_build_requirements.txt',
20
- __FILE__
21
- )
22
-
23
- # Path to the pip requirements file used to install requirements upon Gem
24
- # installation.
25
- PRE_INSTALL_REQUIREMENTS = File.expand_path(
26
- '../../../pre_install_requirements.txt',
27
- __FILE__
28
- )
29
-
30
- ##
31
- # Verifies the requirements to install thi Gem.
32
- #
33
- def verify_requirements
34
- require_executable('python')
35
- require_version('python', python_version, '2.6.0')
36
- require_executable('pip')
37
- require_version('pip', pip_version, '1.3.1')
38
- end