-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (73 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from setuptools import setup, find_packages
from csvuniondiff import __version__
setup(
name='csvuniondiff',
version=__version__,
description='A package for comparing CSV-like files through union and difference operations.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Brian Wei Hao Ma',
author_email='brianmaytc@gmail.com',
license='MIT',
url='https://github.com/BrianWeiHaoMa/csvuniondiff',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.10',
],
keywords=[
'csv',
'diff',
'union',
'compare',
'files',
'command-line',
'tool',
'data',
'analysis',
'pandas',
'dataframes',
'comparison',
'merge',
'difference',
'columns',
'rows',
'data processing',
'data integration',
'file comparison',
'open source',
'csv files',
'xlsx files',
'json files',
'xml files',
'html files',
'cli tool',
'data matching',
'data alignment',
'data cleaning',
'double-check',
'data validation',
'validation',
'confirm',
'error detection',
'sql',
],
python_requires='>=3.10',
packages=find_packages(exclude=('tests')),
install_requires=[
'pandas>=2.2.2, <3.0.0',
],
entry_points={
'console_scripts': [
'csvuniondiff = csvuniondiff.src.command:main',
],
},
)