1
0
mirror of https://github.com/CMiksche/gitea-auto-update synced 2025-12-10 16:07:23 +01:00
Files
gitea-auto-update/setup.py
Christoph Miksche d95f1aacb8 feat: New structure, added CLI, logging and setup
* Changed structure to a Object orientated approach.
* Add CLI with input for the settings file.
* Added logging via file.
* Added setup for publishing in pip.
2019-08-26 21:26:19 +02:00

24 lines
768 B
Python

from setuptools import setup
setup(name='gitea_auto_update',
version='2.0.0',
description='A script which can update gitea to a new version.',
url='https://github.com/CMiksche/gitea-auto-update',
author='Christoph Miksche',
author_email='christoph@miksche.org',
license='GPLv3',
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
],
keywords=['gitea', 'update', 'debian', 'linux'],
install_requires=[
'requests',
'packaging',
'fire'
],
packages=['update'],
entry_points={
'console_scripts': ['gitea-auto-update=update.__init__:main'],
}
)