-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name='video2panorama',
version='1.0.3',
author='Bolborici Radu-George',
author_email='radu.bolborici@gmail.com',
description='A package to convert video sequences into panoramic images',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/RaduBolbo/video_to_panorama.git',
packages=find_packages(),
install_requires=[
'imageio>=2.35.1',
'matplotlib>=3.9.2',
'numpy>=2.1.1',
'opencv-python>=4.10.0.84',
'pillow>=10.4.0',
'tqdm>=4.66.5'
],
entry_points={
'console_scripts': [
'video2panorama=video2panorama.main:main', # This connects the CLI command to your main function
],
},
package_data={
'video2panorama': ['hyperparameters.json'], # Specify the JSON file
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
],
python_requires='>=3.8',
)