2014-07-05 22:49:34 +04:00
|
|
|
#!/usr/bin/env python
|
2015-01-04 21:30:56 +03:00
|
|
|
from setuptools import setup
|
2015-03-09 08:46:35 +03:00
|
|
|
import shutil
|
2015-01-04 21:30:56 +03:00
|
|
|
|
2014-07-05 22:49:34 +04:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
from os import path
|
2014-12-03 03:06:57 +03:00
|
|
|
|
2015-01-04 21:30:56 +03:00
|
|
|
from setuptools import Extension
|
2015-01-06 04:34:55 +03:00
|
|
|
from distutils import sysconfig
|
|
|
|
import platform
|
|
|
|
|
2015-01-17 08:19:54 +03:00
|
|
|
# PyPy --- NB! PyPy doesn't really work, it segfaults all over the place. But,
|
|
|
|
# this is necessary to get it compile.
|
2015-01-06 04:34:55 +03:00
|
|
|
# We have to resort to monkey-patching to set the compiler, because pypy broke
|
2015-01-30 10:14:45 +03:00
|
|
|
# all the everything.
|
2015-01-06 04:34:55 +03:00
|
|
|
|
2015-01-06 05:05:43 +03:00
|
|
|
pre_patch_customize_compiler = sysconfig.customize_compiler
|
2015-01-06 04:34:55 +03:00
|
|
|
def my_customize_compiler(compiler):
|
2015-01-06 05:05:43 +03:00
|
|
|
pre_patch_customize_compiler(compiler)
|
2015-01-06 04:34:55 +03:00
|
|
|
compiler.compiler_cxx = ['c++']
|
|
|
|
|
|
|
|
|
|
|
|
if platform.python_implementation() == 'PyPy':
|
|
|
|
sysconfig.customize_compiler = my_customize_compiler
|
2015-01-03 13:02:10 +03:00
|
|
|
|
2015-01-25 06:49:10 +03:00
|
|
|
#def install_headers():
|
|
|
|
# dest_dir = path.join(sys.prefix, 'include', 'murmurhash')
|
|
|
|
# if not path.exists(dest_dir):
|
|
|
|
# shutil.copytree('murmurhash/headers/murmurhash', dest_dir)
|
|
|
|
#
|
|
|
|
# dest_dir = path.join(sys.prefix, 'include', 'numpy')
|
2015-01-17 08:19:54 +03:00
|
|
|
|
|
|
|
|
|
|
|
includes = ['.', path.join(sys.prefix, 'include')]
|
|
|
|
|
|
|
|
|
2015-01-25 06:49:10 +03:00
|
|
|
try:
|
|
|
|
import numpy
|
2015-01-30 10:14:45 +03:00
|
|
|
numpy_headers = path.join(numpy.get_include(), 'numpy')
|
|
|
|
shutil.copytree(numpy_headers, path.join(sys.prefix, 'include', 'numpy'))
|
2015-01-25 06:49:10 +03:00
|
|
|
except ImportError:
|
|
|
|
pass
|
2015-01-30 11:48:19 +03:00
|
|
|
except OSError:
|
|
|
|
pass
|
2015-01-25 06:49:10 +03:00
|
|
|
|
|
|
|
|
2015-03-09 08:46:35 +03:00
|
|
|
def clean(mod_names):
|
|
|
|
for name in mod_names:
|
|
|
|
name = name.replace('.', '/')
|
|
|
|
so = name + '.so'
|
|
|
|
html = name + '.html'
|
|
|
|
cpp = name + '.cpp'
|
|
|
|
c = name + '.c'
|
|
|
|
for file_path in [so, html, cpp, c]:
|
|
|
|
if os.path.exists(file_path):
|
2015-03-09 14:06:33 +03:00
|
|
|
os.unlink(file_path)
|
2014-07-05 22:49:34 +04:00
|
|
|
|
|
|
|
|
2015-01-04 21:30:56 +03:00
|
|
|
def name_to_path(mod_name, ext):
|
|
|
|
return '%s.%s' % (mod_name.replace('.', '/'), ext)
|
2014-07-25 18:47:27 +04:00
|
|
|
|
|
|
|
|
2015-02-18 13:01:27 +03:00
|
|
|
def c_ext(mod_name, language, includes, compile_args, link_args):
|
2015-01-04 21:30:56 +03:00
|
|
|
mod_path = name_to_path(mod_name, language)
|
|
|
|
return Extension(mod_name, [mod_path], include_dirs=includes,
|
2015-08-24 12:52:05 +03:00
|
|
|
extra_compile_args=compile_args, extra_link_args=link_args)
|
2015-01-04 13:14:07 +03:00
|
|
|
|
2014-07-25 18:47:27 +04:00
|
|
|
|
2015-03-08 08:16:32 +03:00
|
|
|
def cython_setup(mod_names, language, includes, compile_args, link_args):
|
2015-01-04 21:30:56 +03:00
|
|
|
import Cython.Distutils
|
|
|
|
import Cython.Build
|
2015-03-08 08:16:32 +03:00
|
|
|
import distutils.core
|
|
|
|
|
2015-01-04 21:30:56 +03:00
|
|
|
if language == 'cpp':
|
|
|
|
language = 'c++'
|
2015-01-28 06:00:20 +03:00
|
|
|
exts = []
|
|
|
|
for mod_name in mod_names:
|
|
|
|
mod_path = mod_name.replace('.', '/') + '.pyx'
|
|
|
|
e = Extension(mod_name, [mod_path], language=language, include_dirs=includes,
|
2015-02-18 13:01:27 +03:00
|
|
|
extra_compile_args=compile_args, extra_link_args=link_args)
|
2015-01-28 06:00:20 +03:00
|
|
|
exts.append(e)
|
2015-03-08 08:16:32 +03:00
|
|
|
distutils.core.setup(
|
|
|
|
name='spacy',
|
2015-07-27 02:51:37 +03:00
|
|
|
packages=['spacy', 'spacy.tokens', 'spacy.en', 'spacy.serialize',
|
|
|
|
'spacy.syntax', 'spacy.munge'],
|
2015-03-08 08:16:32 +03:00
|
|
|
description="Industrial-strength NLP",
|
|
|
|
author='Matthew Honnibal',
|
|
|
|
author_email='honnibal@gmail.com',
|
2015-06-07 20:05:28 +03:00
|
|
|
version=VERSION,
|
2015-03-08 08:16:32 +03:00
|
|
|
url="http://honnibal.github.io/spaCy/",
|
|
|
|
package_data={"spacy": ["*.pxd"],
|
|
|
|
"spacy.en": ["*.pxd", "data/pos/*",
|
|
|
|
"data/wordnet/*", "data/tokenizer/*",
|
|
|
|
"data/vocab/lexemes.bin",
|
|
|
|
"data/vocab/strings.txt"],
|
|
|
|
"spacy.syntax": ["*.pxd"]},
|
|
|
|
ext_modules=exts,
|
|
|
|
cmdclass={'build_ext': Cython.Distutils.build_ext},
|
|
|
|
license="Dual: Commercial or AGPL",
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-01-04 21:30:56 +03:00
|
|
|
def run_setup(exts):
|
|
|
|
setup(
|
|
|
|
name='spacy',
|
2015-07-27 02:51:37 +03:00
|
|
|
packages=['spacy', 'spacy.tokens', 'spacy.en', 'spacy.serialize',
|
|
|
|
'spacy.syntax', 'spacy.munge'],
|
2015-01-04 21:30:56 +03:00
|
|
|
description="Industrial-strength NLP",
|
|
|
|
author='Matthew Honnibal',
|
|
|
|
author_email='honnibal@gmail.com',
|
2015-06-07 20:05:28 +03:00
|
|
|
version=VERSION,
|
2015-01-04 21:30:56 +03:00
|
|
|
url="http://honnibal.github.io/spaCy/",
|
|
|
|
package_data={"spacy": ["*.pxd"],
|
|
|
|
"spacy.en": ["*.pxd", "data/pos/*",
|
|
|
|
"data/wordnet/*", "data/tokenizer/*",
|
2015-01-25 08:58:38 +03:00
|
|
|
"data/vocab/lexemes.bin",
|
2015-07-27 03:14:36 +03:00
|
|
|
"data/vocab/serializer.json",
|
|
|
|
"data/vocab/oov_prob",
|
2015-01-25 08:58:38 +03:00
|
|
|
"data/vocab/strings.txt"],
|
2015-01-04 21:30:56 +03:00
|
|
|
"spacy.syntax": ["*.pxd"]},
|
|
|
|
ext_modules=exts,
|
2015-09-29 16:02:37 +03:00
|
|
|
license="MIT",
|
2015-10-10 17:32:44 +03:00
|
|
|
install_requires=['numpy', 'murmurhash', 'cymem >= 1.11', 'preshed == 0.42',
|
2015-09-29 16:02:37 +03:00
|
|
|
'thinc == 3.3', "text_unidecode", 'wget', 'plac', 'six',
|
2015-06-07 23:24:21 +03:00
|
|
|
'ujson'],
|
2015-01-04 21:30:56 +03:00
|
|
|
setup_requires=["headers_workaround"],
|
|
|
|
)
|
|
|
|
|
|
|
|
import headers_workaround
|
|
|
|
|
|
|
|
headers_workaround.fix_venv_pypy_include()
|
|
|
|
headers_workaround.install_headers('murmurhash')
|
2015-01-17 08:19:54 +03:00
|
|
|
headers_workaround.install_headers('numpy')
|
2015-01-04 21:30:56 +03:00
|
|
|
|
|
|
|
|
2015-10-09 13:42:41 +03:00
|
|
|
VERSION = '0.94'
|
2015-01-04 21:30:56 +03:00
|
|
|
def main(modules, is_pypy):
|
|
|
|
language = "cpp"
|
|
|
|
includes = ['.', path.join(sys.prefix, 'include')]
|
2015-10-10 20:11:20 +03:00
|
|
|
# TODO: http://stackoverflow.com/questions/724664/python-distutils-how-to-get-a-compiler-that-is-going-to-be-used
|
|
|
|
# compile_args = ['-O3', '-Wno-strict-prototypes', '-Wno-unused-function']
|
2015-10-10 17:32:44 +03:00
|
|
|
compile_args = ['-Ox', '-EHsc']
|
2015-02-18 14:10:23 +03:00
|
|
|
link_args = []
|
2015-10-10 20:11:20 +03:00
|
|
|
if sys.platform.startswith('darwin'):
|
2015-02-18 14:03:45 +03:00
|
|
|
compile_args.append(['-mmacosx-version-min=10.8', '-stdlib=libc++'])
|
2015-02-18 14:10:23 +03:00
|
|
|
link_args.append('-lc++')
|
2015-01-28 06:00:20 +03:00
|
|
|
if use_cython:
|
2015-03-08 08:16:32 +03:00
|
|
|
cython_setup(modules, language, includes, compile_args, link_args)
|
2015-01-28 06:00:20 +03:00
|
|
|
else:
|
2015-02-18 13:01:27 +03:00
|
|
|
exts = [c_ext(mn, language, includes, compile_args, link_args)
|
|
|
|
for mn in modules]
|
2015-03-08 08:16:32 +03:00
|
|
|
run_setup(exts)
|
2015-01-04 21:30:56 +03:00
|
|
|
|
|
|
|
|
2015-01-25 08:32:48 +03:00
|
|
|
MOD_NAMES = ['spacy.parts_of_speech', 'spacy.strings',
|
2015-07-17 17:39:25 +03:00
|
|
|
'spacy.lexeme', 'spacy.vocab', 'spacy.attrs',
|
2015-08-24 06:25:55 +03:00
|
|
|
'spacy.morphology', 'spacy.tagger',
|
2015-06-09 22:20:33 +03:00
|
|
|
'spacy.syntax.stateclass',
|
2015-06-26 14:51:39 +03:00
|
|
|
'spacy._ml', 'spacy._theano',
|
2015-10-08 06:00:34 +03:00
|
|
|
'spacy.tokenizer',
|
2015-10-10 17:32:44 +03:00
|
|
|
'spacy.syntax.parser',
|
2015-04-19 11:31:31 +03:00
|
|
|
'spacy.syntax.transition_system',
|
2015-06-14 21:28:14 +03:00
|
|
|
'spacy.syntax.arc_eager',
|
|
|
|
'spacy.syntax._parse_features',
|
2015-07-17 02:19:29 +03:00
|
|
|
'spacy.gold', 'spacy.orth',
|
2015-07-13 23:29:33 +03:00
|
|
|
'spacy.tokens.doc', 'spacy.tokens.spans', 'spacy.tokens.token',
|
2015-07-17 02:19:29 +03:00
|
|
|
'spacy.serialize.packer', 'spacy.serialize.huffman', 'spacy.serialize.bits',
|
2015-08-06 00:48:11 +03:00
|
|
|
'spacy.cfile', 'spacy.matcher',
|
2015-03-09 08:46:35 +03:00
|
|
|
'spacy.syntax.ner']
|
2015-01-04 21:30:56 +03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-03-09 08:46:35 +03:00
|
|
|
if sys.argv[1] == 'clean':
|
|
|
|
clean(MOD_NAMES)
|
|
|
|
else:
|
|
|
|
use_cython = sys.argv[1] == 'build_ext'
|
|
|
|
main(MOD_NAMES, use_cython)
|