mirror of
https://github.com/CMiksche/gitea-auto-update
synced 2025-12-10 07:57:23 +01:00
feat: add long description
This commit is contained in:
12
setup.py
12
setup.py
@@ -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',
|
||||
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',
|
||||
author='Christoph Miksche',
|
||||
author_email='christoph@miksche.org',
|
||||
license='GPLv3',
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||
"Operating System :: Unix",
|
||||
],
|
||||
@@ -17,7 +23,7 @@ setup(name='gitea_auto_update',
|
||||
'packaging',
|
||||
'fire'
|
||||
],
|
||||
packages=['update'],
|
||||
packages=setuptools.find_packages(),
|
||||
entry_points={
|
||||
'console_scripts': ['gitea-auto-update=update.__init__:main'],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user