Initial commit.
This commit is contained in:
commit
bbe73eff21
8 changed files with 1417 additions and 0 deletions
21
setup.py
Executable file
21
setup.py
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
|
||||
|
||||
setup(name="diff-edit",
|
||||
version="v2022.01.01",
|
||||
description="Edit two files side by side, showing differences.",
|
||||
url="https://github.com/ahamilton/diff-edit",
|
||||
author="Andrew Hamilton",
|
||||
author_email="and_hamilton@yahoo.com",
|
||||
license="Artistic 2.0",
|
||||
packages=["diff_edit"],
|
||||
entry_points={"console_scripts": ["diff-edit=diff_edit:main"]},
|
||||
install_requires=[
|
||||
"pygments==2.10.0", "docopt==0.6.2",
|
||||
"fill3 @ git+https://github.com/ahamilton/eris@v2021.12.24#subdirectory=fill3"])
|
||||
Loading…
Add table
Add a link
Reference in a new issue