muck about with setup.py

This commit is contained in:
John Burwell 2023-04-24 18:58:27 -05:00
parent ad3b57f1c8
commit f8f666f365
2 changed files with 4 additions and 4 deletions

View File

@ -28,16 +28,16 @@ with open('LICENSE') as f:
setup( setup(
name='rsbbs', name='rsbbs',
version='0.1.0', version='0.1.0',
description='The Really Simple BBS for ax25d and packet radio', description='A BBS for ax25d and packet radio that is really simple',
long_description=readme, long_description=readme,
author='John Burwell', author='John Burwell',
author_email='john@atatdotdot.com', author_email='john@atatdotdot.com',
url='https://git.b-wells.us/jmbwell/rsbbs', url='https://git.b-wells.us/jmbwell/rsbbs',
license=license, license=license,
packages=find_packages(exclude=('tests', 'docs')), packages=find_packages(exclude=('tests', 'docs')),
data_files=[('', ['config_default.yaml'])], data_files=[('config', ['config/config_default.yaml'])],
entry_points=''' entry_points="""
[console_scripts] [console_scripts]
rsbbs=rsbbs.rsbbs:main rsbbs=rsbbs.rsbbs:main
''' """
) )