Skip to content

Commit

Permalink
mv source into src/
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Dec 26, 2024
1 parent 899c18c commit f9b80e4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='dvc-utils',
version="0.1.0",
description="CLI for diffing DVC files at two commits (or one commit vs. current worktree), optionally passing both through another command first",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=['dvc_utils'],
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=open("requirements.txt").read(),
entry_points={
'console_scripts': [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f9b80e4

Please sign in to comment.