Metadata-Version: 2.1
Name: nep29
Version: 0.0.15
Summary: NEP29 Calculator tools
Home-page: https://github.com/hmaarrfk/nep29
Author: Mark Harfouche
Author-email: mark.harfouche@gmail.com
License: BSD license
Keywords: nep29
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# NEP 29 Calculator


[![PyPI](https://img.shields.io/pypi/v/nep29.svg)](https://pypi.python.org/pypi/nep29)
[![Travis](https://img.shields.io/travis/hmaarrfk/nep29.svg)](https://travis-ci.com/hmaarrfk/nep29)


[NEP 29](https://numpy.org/neps/nep-0029-deprecation_policy.html) calculator tools

Usage
-----
```console
$ nep29 --help
usage: nep29 [-h] [--n_months N_MONTHS] [--n_minor N_MINOR] package

NEP 29 calculator.

positional arguments:
  package              Package to deprecation

optional arguments:
  -h, --help           show this help message and exit
  --n_months N_MONTHS  Number of months to keep supporting (default: 24)
  --n_minor N_MINOR    Number of minor versions to keep supporting (default: 3)

For more information, see https://numpy.org/neps/nep-0029-deprecation_policy.html
```

Example:
```console
$ nep29 numpy
| version |    date    |
|---------|------------|
|  1.19.0 | 2020-06-20 |
|  1.18.0 | 2019-12-22 |
|  1.17.0 | 2019-07-26 |
|  1.16.0 | 2019-01-14 |
```

Credits
-------

This package was created with [Cookiecutter](https://github.com/audreyr/cookiecutter)
and the
[hmaarrfk/cookiecutter-pypackage](https://github.com/hmaarrfk/cookiecutter-pypackage)
project template.



# History

## 0.0.15 (2022-01-30)

* Use miniver instead of versioneer.

## 0.0.10 (2021-12-30)

* Add versioneer.py to the source distribution.

## 0.0.9 (2021-11-17)

* Retrigger failed build due to travis.org migration.

## 0.0.8 (2021-06-16)

* Add support for pre-release packages that don't use a dot to separate the pre-release signifier.

## 0.0.7 (2021-11-03)

* Show default argument values in the help.

## 0.0.6 (2021-11-03)

* Support a few more time formats

## 0.0.5 (2020-10-13)

* Use pretty table for better formatting.

## 0.0.4 (2020-10-12)

* Improve documentation.

## 0.0.1 (2020-03-11)

* First release on PyPI.


