rsbbs/setup.py
2023-04-23 16:22:08 -05:00

43 lines
941 B
Python

from setuptools import setup, find_packages
# https://www.digitalocean.com/community/tutorials/how-to-package-and-distribute-python-applications
setup(
name="really-simple-bbs",
version="0.1",
description='''A really simple BBS developed particularly with ax.25 and amateur radio in mind.''',
author='John Burwell',
author_email='john@atatdotdot.com',
url='https://github.com/jmbwell/really-simple-bbs',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
packages=find_packages(exclude=['test*', 'Test*']),
package_data={
'': ['README.md', 'LICENSE'],
'really-simple-bbs': ['config.yaml.sample']
},
scripts=['main.py'],
entry_points={
'console_scripts': [
'really-simple-bbs = main:main',
],
},
install_requires=[
'PyYAML==4.2b1',
],
)