Skip to content

Commit

Permalink
cosmetic: update readme and add workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jayantkatia committed Feb 24, 2022
1 parent d4ede70 commit 9999a14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Upload Python Package
on:
release:
types: [created]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-20.04
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ topsis input_file weights impacts output_file
### Output
Creates a *output_file*, that contains the original data with performance score and rank.

Example:
```bash
topsis data.xlsx "2,2,3,3,4" "+,-,+,-,+" output.csv
```

## API Usage
### Steps
1. Import topsis function from module topsis
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
setup(
name = 'Topsis-Jayant-102097013',
packages = ['topsis'],
version = '1.1.2',
version = '1.1.3',
license='MIT',
description = 'API and CLI tool to calculate Topsis, CLI tool inputs CSV/Excel files',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Jayant Katia',
author_email = '[email protected]',
url = 'https://github.com/jayantkatia/topsis',
download_url = 'https://github.com/jayantkatia/topsis/archive/refs/tags/v1.1.2.tar.gz',
download_url = 'https://github.com/jayantkatia/topsis/archive/refs/tags/v1.1.3.tar.gz',
keywords = ['topsis', 'python', 'pypi', 'csv', 'xlsx', 'xls', 'cli'],
install_requires=[
'numpy',
Expand Down

0 comments on commit 9999a14

Please sign in to comment.