-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 872 Bytes
/
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
from setuptools import setup
setup(
name='muvi',
version='0.6',
description='Python-based 3D movie viewing software. Developed by the MUVI center at UC Merced.',
url='https://github.com/klecknerlab/muvi',
author='Dustin Kleckner',
author_email='[email protected]',
license='Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0)',
packages=['muvi'],
install_requires=[ #Many of the packages are not in PyPi, so assume the user knows how to isntall them!
# 'numpy',
# 'PyQt5',
],
# scripts=['bin/muvi_convert', 'bin/muvi_track'],
entry_points={
'gui_scripts': ['muvi=muvi.view.qtview:qt_viewer'],
'console_scripts': ['muvi_convert=muvi.convert:convert',
'muvi_track=muvi.calibration.track:main',
],
},
zip_safe=False
)