-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for building (if needed) e.g., pip install --editable .
- Loading branch information
Showing
2 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
.idea/workspace.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
#!/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'] | ||
else: | ||
extra_compile_args = ['-std=c++11', '-O3'] | ||
|
||
|
||
extensions = [ | ||
Extension( | ||
'fairseq.libbleu', | ||
sources=[ | ||
'fairseq/clib/libbleu/libbleu.cpp', | ||
'fairseq/clib/libbleu/module.cpp', | ||
], | ||
extra_compile_args=extra_compile_args, | ||
), | ||
Extension( | ||
'fairseq.data.data_utils_fast', | ||
sources=['fairseq/data/data_utils_fast.pyx'], | ||
language='c++', | ||
extra_compile_args=extra_compile_args, | ||
), | ||
Extension( | ||
'fairseq.data.token_block_utils_fast', | ||
sources=['fairseq/data/token_block_utils_fast.pyx'], | ||
language='c++', | ||
extra_compile_args=extra_compile_args, | ||
), | ||
] | ||
|
||
|
||
def my_build_ext(pars): | ||
""" | ||
Delay loading of numpy headers. | ||
More details: https://stackoverflow.com/a/54138355 | ||
""" | ||
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', | ||
'numpy', | ||
'setuptools>=18.0', | ||
], | ||
install_requires=[ | ||
'cffi', | ||
'fastBPE', | ||
'numpy', | ||
'regex', | ||
'sacrebleu', | ||
'torch', | ||
'tqdm', | ||
], | ||
packages=find_packages(exclude=['scripts', 'tests']), | ||
ext_modules=extensions, | ||
test_suite='tests', | ||
entry_points={ | ||
'console_scripts': [ | ||
'fairseq-eval-lm = fairseq_cli.eval_lm:cli_main', | ||
'fairseq-generate = fairseq_cli.generate:cli_main', | ||
'fairseq-interactive = fairseq_cli.interactive:cli_main', | ||
'fairseq-preprocess = fairseq_cli.preprocess:cli_main', | ||
'fairseq-score = fairseq_cli.score:main', | ||
'fairseq-train = fairseq_cli.train:cli_main', | ||
'fairseq-validate = fairseq_cli.validate:cli_main', | ||
], | ||
}, | ||
cmdclass={'build_ext': my_build_ext}, | ||
zip_safe=False, | ||
) |