Fixing directories for packaging
.gitmodules
deleted
100644 → 0
[submodule "simf-python-gui/lepton-grabber"] | ||
path = simf-python-gui/lepton-grabber | ||
url = [email protected]:peeyush_sharma/lepton-grabber.git |
SimfPythonGUI/config.ini
0 → 100644
... | ... | @@ -6,8 +6,8 @@ with open("README.md", "r") as fh: |
long_description = fh.read() | ||
setuptools.setup( | ||
name="simf-python-gui", | ||
version="0.0.2", | ||
name="SimfPythonGUI", | ||
version="0.0.3", | ||
author="A.J. Fite, Sara Kipps", | ||
author_email="[email protected], [email protected]", | ||
description="A GUI controller for the closed source SIMF camera capture utility", | ||
... | ... | @@ -15,9 +15,9 @@ setuptools.setup( |
long_description_content_type="text/markdown", | ||
url="https://git.nclf.net/SIMF/simf-python-gui", | ||
packages=setuptools.find_packages(), | ||
package_data={'simf-python-gui': ['*.ui']}, | ||
package_data={'SimfPythonGUI': ['*.ui']}, | ||
entry_points={ | ||
'gui_scripts': ['simf-gui=simf-python-gui.main:main'], | ||
'gui_scripts': ['simfgui = SimfPythonGUI.main:main'], | ||
}, | ||
data_files=[('', ['LICENSE.md'])], | ||
install_requires=['PyQt5', 'watchdog'], | ||
... | ... |
Please register or sign in to comment