-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1022 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 1022 Bytes
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
from setuptools import setup, find_packages
setup(
name='event_camera_emulation',
version='1.0.1',
description='The event_camera_emulation package',
author='Ahmed Faisal Abdelrahman',
author_email='[email protected]',
maintainer='Ahmed Faisal Abdelrahman',
maintainer_email='[email protected]',
url='https://github.com/af-a/event_camera_emulation',
package_dir={'': 'common'},
packages=find_packages(include=['event_camera_emulation'],
where='common'),
license='MIT',
install_requires=[
'opencv-python>=4.8.1',
'numpy',
'scikit-image',
],
setup_requires=['wheel'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
keywords=[
'Event camera',
'Event-based vision',
'Neuromorphic',
],
zip_safe=False,
)