-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (48 loc) · 2.58 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup
setup(name='listcompare',
version='2.1.1',
url='https://github.com/aliartiza75/python-list-comparison.git',
author='Irtiza Ali',
description="This module provides support to compare two lists that have same or different types of data in it.",
long_description="This module provides support to compare two lists that have same or different types of data in it." +
"\n Examples \n" +
"Open the ipython3 shell and import the modules\n" +
"$ import listcompare as plc \n" +
"$ lis1 = [1, 2 ,3] \n" +
"$ lis2 = [2, 1] \n" +
"$ plc.compare_list(lis1, dlis2) # Frue \n\n" +
"$ lis1 = [1, 2, 3] \n" +
"$ lis2 = [2, 1, '3'] \n" +
"$ plc.compare_list(lis1, lis2) # False \n\n" +
"$ lis1 = ['1', '2', '3'] \n" +
"$ lis2 = ['2', '1'] \n" +
"$ plc.compare_list(lis1, lis2) # False \n\n" +
"$ lis1 = [1, 2, 3] \n" +
"$ lis2 = [2, 1, 3] \n" +
"$ plc.compare_list(lis1, lis2) # True \n\n" +
"$ lis1 = [{1: 1, 2: 2}] \n" +
"$ lis2 = [{1: 1, 2: 2}] \n" +
"$ plc.compare_list(lis1, lis2) # True \n\n"
"$ lis1 = 123 \n" +
"$ lis2 = [{1: 1, 2: 2}] \n" +
"$ plc.compare_list(lis1, lis2) # Exception will be raised \n\n"
"$ lis1 = [1, 'a', {1: 1, 2: 2}, 3] \n" +
"$ lis2 = [3, 1, {1: 1, 2: 2}, 'a']] \n" +
"$ plc.compare_list(lis1, lis2) # True \n\n",
author_email='[email protected]',
license='GNU GENERAL PUBLIC LICENSE',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='list comparision python3 python2 python listofdifferentdatatypes pythonlists listcomparision',
packages=['listcompare'],
zip_safe=False)