Skip to content

Commit

Permalink
[FIX] Drop setuptools version requirement (#38)
Browse files Browse the repository at this point in the history
* Drop version requirement.

* Specify MarkDown for README.

* Add badges.
  • Loading branch information
tsalo authored Mar 15, 2021
1 parent 6d25d1c commit d92df76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# mapca
A Python implementation of the moving average principal components analysis methods from GIFT

[![Latest Version](https://img.shields.io/pypi/v/mapca.svg)](https://pypi.python.org/pypi/mapca/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mapca.svg)](https://pypi.python.org/pypi/mapca/)
[![License](https://img.shields.io/badge/license-GPL--2.0-blue.svg)](https://opensource.org/licenses/GPL-2.0)
[![CircleCI](https://circleci.com/gh/ME-ICA/mapca.svg?style=shield)](https://circleci.com/gh/ME-ICA/mapca)
[![Codecov](https://codecov.io/gh/ME-ICA/mapca/branch/main/graph/badge.svg?token=GEKDT6R0B7)](https://codecov.io/gh/ME-ICA/mapca)
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/ME-ICA/mapca.svg)](http://isitmaintained.com/project/ME-ICA/mapca "Average time to resolve an issue")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools==40.8", "wheel"]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 99
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def main():
version=vars["VERSION"],
description=vars["DESCRIPTION"],
long_description=vars["LONGDESC"],
long_description_content_type="text/markdown",
author=vars["AUTHOR"],
author_email=vars["EMAIL"],
maintainer=vars["MAINTAINER"],
Expand Down

0 comments on commit d92df76

Please sign in to comment.