This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
55 lines (51 loc) · 1.67 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
#!/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="2.0.1",
description="Research-friendly framework for in-lab experiments",
long_description="LabGraph is a Python framework for rapidly prototyping experimental " +
"systems for real-time streaming applications. " +
"It is particularly well-suited to real-time neuroscience, " +
"physiology and psychology experiments.",
url="https://github.com/facebookresearch/labgraph",
license="MIT",
keywords="python streaming framework, reality lab, neuroscience, physiology, psychology",
packages=find_packages(),
package_data={"labgraph": ["tests/mypy.ini"]},
python_requires=">=3.6",
ext_modules=LIBRARY_EXTENSIONS,
cmdclass={"build_ext": buck_build_ext},
install_requires=[
"appdirs>=1.4.4",
"click>=7.1.2",
"h5py>=3.3.0",
"matplotlib>=3.1.2",
"mypy>=0.910",
"numpy>=1.19.5",
"psutil>=5.6.7",
"pytest>=3.10.1",
"pytest_mock>=2.0.0",
"pyzmq>=19.0.2",
"typeguard>=2.10.0",
"typing_extensions>=3.7.4",
"websockets>=8.1",
"yappi>=1.2.5",
],
)