Skip to content

Commit db90bc2

Browse files
committed
dist: Add setup files for pip installation
1 parent 7114bb7 commit db90bc2

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

setup.cfg

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
)

0 commit comments

Comments
 (0)