-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 926 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
30
31
32
33
from setuptools import setup
def readme():
with open('README.md') as f:
README = f.read()
return README
setup(
name='topsispy',
packages=['topsispy'],
version='0.0.2',
license='MIT',
description='This is a Python Package implementing TOPSIS used for multi-criteria decision analysis method',
long_description=readme(),
long_description_content_type='text/markdown',
author='Shivam Behl',
author_email='shivambehl123@gmail.com',
url='https://github.com/shivambehl/TopsisPy',
keywords=['topsis', 'mcda', 'UCS633', 'TIET'],
install_requires=[
'numpy',
'pandas',
],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
],
)