-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
64 lines (52 loc) · 1.57 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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
import os.path
import shutil
from glob import glob
import sys
import setuptools
from setuptools import Extension
from setuptools.command.build_ext import build_ext
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "pythia"))
with open("README.md", encoding="utf8") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
with open("requirements.txt") as f:
reqs = f.read()
DISTNAME = "pythia"
DESCRIPTION = "pythia: a modular framework for vision and language multimodal \
research."
LONG_DESCRIPTION = readme
AUTHOR = "Facebook AI Research"
LICENSE = license
REQUIREMENTS = (reqs.strip().split("\n"),)
ext_modules = [
Extension(
'cphoc',
sources=['pythia/utils/phoc/src/cphoc.c'],
language='c',
libraries=["pthread", "dl", "util", "rt", "m"],
extra_compile_args=["-O3"],
),
]
class BuildExt(build_ext):
def run(self):
build_ext.run(self)
cphoc_lib = glob('build/lib.*/cphoc.*.so')[0]
shutil.copy(cphoc_lib, 'pythia/utils/phoc/cphoc.so')
if __name__ == "__main__":
setuptools.setup(
name=DISTNAME,
install_requires=REQUIREMENTS,
packages=setuptools.find_packages(),
ext_modules=ext_modules,
cmdclass={'build_ext': BuildExt},
version="0.3",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
license=LICENSE,
setup_requires=["pytest-runner"],
tests_require=["flake8", "pytest"],
)