Commit 0338ba05 authored by LorenzoMonti's avatar LorenzoMonti
Browse files

MANIFEST.in and setup.py modified for the Windows OS compliance

parent 10237609
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
include README.md
include LICENSE
include requirements.txt
recursive-include config/ *
recursive-include theme/ *
recursive-include config *
recursive-include theme *
include src/azure.tcl
recursive-include src/ *.py
recursive-include src *.py
 No newline at end of file

plot/plot_example.png

deleted100644 → 0
−19.3 KiB
Loading image diff...
+0 −0

File moved.

+8 −2
Original line number Diff line number Diff line
@@ -17,7 +17,11 @@ setup(
	author_email='lorenzo.monti@inaf.it',
	packages=['config', 'scripts', 'src', 'src/tabs', 'theme'],
	include_package_data=True,
	scripts=['scripts/calibrate_receiver'],
	entry_points={
        'console_scripts': [
            'calibrate_receiver=src.gui:vp_start_gui',
        ]
    },
	license='MIT',
	platforms='all',
	install_requires=[
@@ -36,6 +40,8 @@ setup(
	],
	classifiers=[
        'Programming Language :: Python :: 3.8',
        'Operating System :: Microsoft :: Windows',
        'Operating System :: POSIX :: Linux',
        'License :: OSI Approved :: MIT License',
    ]
)
 No newline at end of file