64 lines
1.8 KiB
Python
64 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Really Simple BBS - a really simple BBS for ax.25 packet radio.
|
|
# Copyright (C) 2023 John Burwell <john@atatdotdot.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
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://git.b-wells.us/jmbwell/rsbbs',
|
|
|
|
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': [
|
|
'main.py = main:main',
|
|
],
|
|
},
|
|
|
|
install_requires=[
|
|
'greenlet==2.0.2',
|
|
'PyYAML==6.0',
|
|
'SQLAlchemy==2.0.10',
|
|
'typing_extensions==4.5.0',
|
|
],
|
|
|
|
|
|
) |