1
0
mirror of https://github.com/CMiksche/gitea-auto-update synced 2026-01-24 19:05:35 +01:00

feat: add long description

This commit is contained in:
Christoph Miksche
2019-08-26 21:33:28 +02:00
parent d95f1aacb8
commit 56f128b2f7

View File

@@ -1,13 +1,19 @@
from setuptools import setup import setuptools
setup(name='gitea_auto_update', with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='gitea_auto_update',
version='2.0.0', version='2.0.0',
description='A script which can update gitea to a new version.', description='A script which can update gitea to a new version.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/CMiksche/gitea-auto-update', url='https://github.com/CMiksche/gitea-auto-update',
author='Christoph Miksche', author='Christoph Miksche',
author_email='christoph@miksche.org', author_email='christoph@miksche.org',
license='GPLv3', license='GPLv3',
classifiers=[ classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix", "Operating System :: Unix",
], ],
@@ -17,7 +23,7 @@ setup(name='gitea_auto_update',
'packaging', 'packaging',
'fire' 'fire'
], ],
packages=['update'], packages=setuptools.find_packages(),
entry_points={ entry_points={
'console_scripts': ['gitea-auto-update=update.__init__:main'], 'console_scripts': ['gitea-auto-update=update.__init__:main'],
} }