mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
adjusted description
This commit is contained in:
parent
a75081b916
commit
71433f6366
1 changed files with 5 additions and 0 deletions
5
setup.py
5
setup.py
|
@ -4,6 +4,9 @@ from setuptools import setup, find_packages
|
||||||
with open('requirements.txt') as f:
|
with open('requirements.txt') as f:
|
||||||
required = f.read().splitlines()
|
required = f.read().splitlines()
|
||||||
|
|
||||||
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||||||
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='freedata-server',
|
name='freedata-server',
|
||||||
version='0.15.3',
|
version='0.15.3',
|
||||||
|
@ -14,6 +17,8 @@ setup(
|
||||||
author='DJ2LS',
|
author='DJ2LS',
|
||||||
author_email='dj2ls@proton.me',
|
author_email='dj2ls@proton.me',
|
||||||
description='A free, open-source, multi-platform application for sending files and messages, using the codec2 HF modems.',
|
description='A free, open-source, multi-platform application for sending files and messages, using the codec2 HF modems.',
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
url='https://freedata.app',
|
url='https://freedata.app',
|
||||||
license='GPL3.0',
|
license='GPL3.0',
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|
Loading…
Reference in a new issue