-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·40 lines (38 loc) · 1.22 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
from setuptools import setup, find_packages, Extension
setup(
name="thotus",
version="0.1.1",
author="Fabien Devaux",
author_email="[email protected]",
license="MIT",
description="A 3D scanning application",
long_description=open('README.md', encoding='utf-8').read(),
scripts=['thot'],
package_dir={'':'src'},
packages=find_packages('src'),
url='https://github.com/fdev31/thot',
# zip_safe=False,
keywords=[],
install_requires=[
'scipy >= 0.10.0',
'numpy >= 1.0.0',
'opencv-python >= 4.0',
'prompt_toolkit > 2.0.0',
'pyserial >= 3.0.0',
# 'v4l2capture 16.10.0',
],
classifiers=[
'Environment :: Console',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
ext_modules= [
Extension("v4l2capture", ["v4l2capture.c"],
libraries=["v4l2"], extra_compile_args=['-DUSE_LIBV4L', ],
)]
)