-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (52 loc) · 1.45 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
"""Setup script for e2p."""
import setuptools
from setuptools import setup, find_packages
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 :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
"""
version="0.0.1"
package_name="e2p"
setup(
name=package_name,
version=version,
description='Reconstructs polarization from PDAVIS camera',
author="Tobi Delbruck, Haiyang Mei, Zuowen Wang",
author_email="tobi@ini.uzh.ch",
python_requires=">={}".format("3.8"),
# packages=find_packages(include=['v2ecore', 'v2e.*']),
packages=find_packages(),
url='https://github.com/SensorsINI/v2e',
install_requires=[
'matplotlib',
'opencv-python == 4.5.5.64',
'tqdm',
'pandas',
'h5py',
'numpy == 1.24.2',
'scikit-image',
'pytorch_msssim',
'timm',
'engineering_notation',
'psutil',
'pyzmq',
'thop',
'IPython',
'easygui',
'pypref'
],
scripts=['pdavis_demo.py'],
entry_points={
'console_scripts': ['pdavis_demo=pdavis_demo:main']
},
classifiers=list(filter(None, classifiers.split('\n'))),
)