adjusted freedata command

This commit is contained in:
DJ2LS 2024-04-18 11:13:25 +02:00
parent 772ea7a5b6
commit 41e2fd2986

View file

@ -8,7 +8,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read() long_description = fh.read()
setup( setup(
name='freedata_server', name='freedata-server',
version='0.15.4', version='0.15.4',
packages=find_packages(where='.'), packages=find_packages(where='.'),
package_dir={'': '.'}, package_dir={'': '.'},
@ -23,7 +23,7 @@ setup(
license='GPL3.0', license='GPL3.0',
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'freedata_server=freedata_server.server:main', # Points to the main() function in server.py 'freedata-server=freedata_server.server:main', # Points to the main() function in server.py
], ],
}, },
include_package_data=True, # Ensure non-python files are included if specified include_package_data=True, # Ensure non-python files are included if specified