Skip to content

Commit 07d3132

Browse files
committed
dist: Add setup files for pip installation
1 parent 2dcc626 commit 07d3132

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

setup.cfg

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[metadata]
2+
name = csv-diff-python3-blue-monk
3+
version = 1.0.0
4+
author = blue-monk
5+
author_email = [email protected]
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

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
)

0 commit comments

Comments
 (0)