This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
executable file
·109 lines (96 loc) · 3.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import setup, find_packages, Extension
import sys
if sys.version_info < (3,):
sys.exit('Sorry, Python3 is required for fairseq.')
with open('README.md') as f:
readme = f.read()
if sys.platform == 'darwin':
extra_compile_args = ['-stdlib=libc++', '-O3']
extra_link_args = ['-stdlib=libc++']
else:
extra_compile_args = ['-std=c++11', '-O3']
extra_link_args = ['-std=c++11']
bleu = Extension(
'fairseq.libbleu',
sources=[
'fairseq/clib/libbleu/libbleu.cpp',
'fairseq/clib/libbleu/module.cpp',
],
extra_compile_args=extra_compile_args,
)
def get_cython_modules():
token_block_utils = Extension(
"fairseq.data.token_block_utils_fast",
["fairseq/data/token_block_utils_fast.pyx"],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)
data_utils_fast = Extension(
"fairseq.data.data_utils_fast",
["fairseq/data/data_utils_fast.pyx"],
language="c++",
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)
return [token_block_utils, data_utils_fast]
def my_build_ext(pars):
"""
Delay loading of numpy headers.
More details: https://stackoverflow.com/questions/54117786/add-numpy-get-include-argument-to-setuptools-without-preinstalled-numpy
"""
from setuptools.command.build_ext import build_ext as _build_ext
class build_ext(_build_ext):
def finalize_options(self):
_build_ext.finalize_options(self)
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
return build_ext(pars)
setup(
name='fairseq',
version='0.8.0',
description='Facebook AI Research Sequence-to-Sequence Toolkit',
url='https://github.com/pytorch/fairseq',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
long_description=readme,
long_description_content_type='text/markdown',
setup_requires=[
'numpy',
'cython',
'setuptools>=18.0',
],
install_requires=[
'cffi',
'fastBPE',
'numpy',
'regex',
'sacrebleu',
'torch',
'tqdm',
],
packages=find_packages(exclude=['scripts', 'tests']),
ext_modules=get_cython_modules() + [bleu],
test_suite='tests',
entry_points={
'console_scripts': [
'fairseq-eval-lm = eval_lm:cli_main',
'fairseq-generate = generate:cli_main',
'fairseq-preprocess = preprocess:cli_main',
'fairseq-score = score:main',
'fairseq-train = train:cli_main',
],
},
cmdclass={'build_ext': my_build_ext},
zip_safe=False,
)