Metadata-Version: 2.1
Name: gitee-utils
Version: 2.0.0
Summary: A command-line tool to manage repositories on Gitee.
Home-page: https://github.com/he-yaowen/gitee-utils
Author: HE Yaowen
Author-email: he.yaowen@hotmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: COPYING

# gitee-utils

A command-line tool ported from [github-utils](https://github.com/he-yaowen/github-utils) to manage repositories on Gitee.

# Install

```
pip install gitee-utils
```

# Configurations

In file `~/.gitee-utils/config.ini`

```
[auth]
access_token = GITHUB_ACCESS_TOKEN
```

# Commands

## List all repositories

```
gitee-utils list-repos
```

## Create new repositories

```
gitee-utils create-repo [--private] [--description DESC] [--path PATH] [--homepage URL] [--has-issues] [--has-wiki]
                        [--can-comment] [--auto-init] [--gitignore_template LANG] [--license-template LICENSE]
                        NAME...
```

## Delete existing repositories

```
gitee-utils delete-repos [--all] [NAME...]
```


## License

Copyright (C) 2020 HE Yaowen <he.yaowen@hotmail.com>

The GNU General Public License (GPL) version 3, see [COPYING](./COPYING).
