-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 883 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name = 'Topsis-Jayant-102097013',
packages = ['topsis'],
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.3.tar.gz',
keywords = ['topsis', 'python', 'pypi', 'csv', 'xlsx', 'xls', 'cli'],
install_requires=[
'numpy',
'pandas',
],
entry_points={
'console_scripts': [
'topsis = topsis.topsis:main'
]
},
)