Metadata-Version: 2.4
Name: ignorepy
Version: 0.1
Summary: Generate a .gitignore file from command line tags using gitignore.io 
Project-URL: Homepage, https://github.com/CalvinSprouse/ignorepy
Project-URL: Issues, https://github.com/CalvinSprouse/ignorepy/issues
Author-email: Calvin Sprouse <calvinsprouse@proton.me>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: pyperclip
Requires-Dist: requests
Description-Content-Type: text/markdown

# ignorepy
Generate a .gitignore file from command line tags using gitignore.io

## Installation
Install with pip:

``` bash
pip install ignorepy
```

## Usage
After installing run

``` bash
ignorepy tag1 tag2 tag3
```

A `.gitignore` file will be generated from [gitignore.io](https://www.toptal.com/developers/gitignore) with the specified tags and copied to the clipboard.

Additionally, pass `-s`

``` bash
ignorepy tag1 tag2 tag3 -s
```

and the tags will be saved as default options.
Then the program can be called with

``` bash
ignorepy
```

and the default tags will be automatically loaded.

Additionally pass `-f`

``` bash
ignorepy tag1 tag2 tag3 -f
```

and instead of being copied to the clipboard, the `.gitignore` file will be written to `.gitignore` in the current working directory.
