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