File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ [metadata]
2+ name = csv-diff-python3-blue-monk
3+ version = 1.0.0
4+ author = blue-monk
5+ author_email = blue.monk.487@gmail.com
6+ description = A simple command-line tool to see the difference between two CSV files.
7+ long_description = file: README.md
8+ long_description_content_type = text/markdown
9+ url = https://github.com/blue-monk/csv-diff-python3
10+ project_urls =
11+ Bug Tracker = https://github.com/blue-monk/csv-diff-python3/issues
12+ classifiers =
13+ Programming Language :: Python :: 3
14+ License :: OSI Approved :: MIT License
15+ Operating System :: OS Independent
16+
17+ [options]
18+ package_dir =
19+ = src
20+ packages = find:
21+ python_requires = >=3.6
22+
23+ [options.packages.find]
24+ where = src
Original file line number Diff line number Diff line change 1+ from setuptools import setup
2+
3+ setup (
4+ name = "csv-diff-python3-blue-monk" ,
5+ install_requires = [
6+ ],
7+ extras_require = {
8+ },
9+ entry_points = {
10+ 'console_scripts' : [
11+ 'csvdiff3=csvdiff3.csvdiff:main' ,
12+ ],
13+ },
14+ )
You can’t perform that action at this time.
0 commit comments