-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
100 lines (87 loc) · 2.83 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
"""Setup script for the pyaer package.
Author: Yuhuang Hu
Email : [email protected]
"""
from __future__ import absolute_import
from __future__ import print_function
import os
from sys import platform
from sysconfig import get_paths
import numpy
from setuptools import find_packages
from setuptools import setup
from setuptools.extension import Extension
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Utilities
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
"""
try:
from pyaer import __about__
about = __about__.__dict__
except ImportError:
about = dict()
exec(open("pyaer/__about__.py").read(), about)
python_paths = get_paths()
try:
numpy_include = numpy.get_include()
except AttributeError:
numpy_include = numpy.get_numpy_include() # type: ignore
if platform in ["linux", "linux2"]:
libcaer_include = "/usr/include"
libcaer_lib = "/usr/lib/x86_64-linux-gnu"
# for Raspberry Pi support
if os.uname()[1] == "raspberrypi":
libcaer_lib = "/usr/lib/arm-linux-gnueabihf"
elif platform == "darwin":
libcaer_include = "/opt/homebrew/include"
libcaer_lib = "/opt/homebrew/lib"
elif "win" in platform:
libcaer_include = "C:/msys64/mingw64/include"
libcaer_lib = "C:/msys64/mingw64/lib"
include_dirs = [libcaer_include, python_paths["include"], numpy_include]
library_dirs = [libcaer_lib, python_paths["stdlib"]]
swig_opts = ["-I" + libcaer_include]
if platform == "darwin":
include_dirs += ["/usr/local/include"]
library_dirs += ["/usr/local/lib"]
swig_opts += ["-I/usr/local/include"]
libcaer_wrap = Extension(
name="pyaer._libcaer_wrap",
sources=["./pyaer/pyflags.i"],
include_dirs=include_dirs,
library_dirs=library_dirs,
swig_opts=swig_opts,
# extra_compile_args=["-std=c11"],
extra_link_args=["-lcaer"],
)
setup(
name="pyaer",
version=about["__version__"],
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
install_requires=["numpy"],
packages=find_packages(),
ext_modules=[libcaer_wrap],
scripts=[
"scripts/aer_comm/aer_hub",
"scripts/aer_comm/aer_lstopic",
"scripts/aer_comm/aer_publisher",
"scripts/aer_comm/aer_subscriber",
"scripts/aer_comm/aer_pubsuber",
"scripts/aer_comm/aer_launch",
"scripts/aer_comm/aer_saver",
],
classifiers=list(filter(None, classifiers.split("\n"))),
description="PyAER: Low-level Python APIs for Accessing Neuromorphic Devices.",
)