1
0
Fork 0

Adding upstream version 0.10.9.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-11 18:25:06 +01:00
parent c0f23aff1f
commit a9c588f707
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
27 changed files with 1822 additions and 0 deletions

38
setup.py Normal file
View file

@ -0,0 +1,38 @@
from setuptools import setup
long_description = None
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='gita',
packages=['gita'],
version='0.10.9',
license='MIT',
description='Manage multiple git repos',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nosarthur/gita',
platforms=['linux', 'osx', 'win32'],
keywords=['git', 'manage multiple repositories'],
author='Dong Zhou',
author_email='zhou.dong@gmail.com',
entry_points={'console_scripts': ['gita = gita.__main__:main']},
install_requires=['pyyaml>=5.1'],
python_requires='~=3.6',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Terminals",
"Topic :: Utilities",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
include_package_data=True,
)