-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·38 lines (30 loc) · 1.08 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
#!/usr/bin/python
"""
desc: Setup script for 'FLI' package.
auth: Craig Wm. Versek ([email protected])
date: 7/25/2012
notes: Install with "python setup.py install".
Requires FLI SDK and Linux Kernel Module
from http://www.flicamera.com/software/index.html
The SDK library should be built as a shared object, named 'libfli.so',
and located in a standard library path, such as /usr/local/lib
"""
import platform, os, shutil
PACKAGE_SOURCE_DIR = 'src'
PACKAGE_NAME = 'FLI'
PACKAGE_PATH = os.path.abspath(os.sep.join((PACKAGE_SOURCE_DIR,PACKAGE_NAME)))
PACKAGE_METADATA = {
'name' : PACKAGE_NAME,
'version' : 'dev',
'author' : "Craig Versek",
'author_email' : "[email protected]",
}
if __name__ == "__main__":
from setuptools import setup, find_packages
setup(
packages = find_packages(PACKAGE_SOURCE_DIR),
package_dir = {'':PACKAGE_SOURCE_DIR},
#non-source files
package_data = {'': ['*.so', '*.dll']},
**PACKAGE_METADATA
)