forked from facebookresearch/labgraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup_py36.py
52 lines (48 loc) · 1.29 KB
/
setup_py36.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
#!/usr/bin/env python3
# Copyright 2004-present Facebook. All Rights Reserved.
from buck_ext import BuckExtension, buck_build_ext
from setuptools import find_packages, setup
LIBRARY_EXTENSIONS = [
BuckExtension(
name="cthulhubindings",
target="//:cthulhubindings#default,shared",
),
BuckExtension(
name="labgraph_cpp",
target="//:labgraph_cpp_bindings#default,shared",
),
BuckExtension(
name="MyCPPNodes",
target="//:MyCPPNodes#default,shared",
),
]
setup(
name="labgraph",
version="1.0.3",
description="Python streaming framework",
packages=find_packages(),
package_data={"labgraph": ["tests/mypy.ini"]},
python_requires=">=3.6, <3.7",
ext_modules=LIBRARY_EXTENSIONS,
cmdclass={"build_ext": buck_build_ext},
install_requires=[
"appdirs==1.4.3",
"click==7.0",
"cppy==1.1.0",
"dataclasses==0.6",
"h5py==2.10.0",
"kiwisolver==1.3.2",
"matplotlib==3.1.1",
"mypy==0.782",
"numpy==1.16.4",
"psutil==5.6.7",
"pylsl==1.15.0",
"pytest==3.10.1",
"pytest_mock==2.0.0",
"pyzmq==18.1.0",
"typeguard==2.5.1",
"typing_extensions==3.7.4.3",
"websockets==8.1",
"yappi==1.2.5",
],
)