1
0
mirror of https://github.com/CMiksche/gitea-auto-update synced 2025-12-10 07:57:23 +01:00
Files
gitea-auto-update/setup.py
Christoph Miksche 480604dce3 docs: add contributor, update version & .gitignore
- Add the new contributor @iwalton3 to the README.md
- Update the version for publishing in PyPI
- Update .gitignore to ignore distribution files
2019-09-04 15:36:33 +02:00

32 lines
1.0 KiB
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='gitea_auto_update',
version='2.0.7',
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",
],
keywords=['gitea', 'update', 'debian', 'linux'],
python_requires='>=3',
install_requires=[
'requests',
'packaging',
'fire',
'configparser'
],
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ['gitea-auto-update=gitea_auto_update.update:main'],
}
)