mirror of
https://github.com/vale981/rmview
synced 2025-03-04 16:51:38 -05:00
10 lines
230 B
Python
10 lines
230 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='rmview',
|
|
packages=['rmview'],
|
|
install_requires=['pyqt5', 'paramiko', 'twisted'],
|
|
entry_points={
|
|
'console_scripts':['rmview = rmview.rmview:rmViewMain']
|
|
}
|
|
)
|