Metadata-Version: 2.0
Name: dvc
Version: 0.9.1
Summary: Git for data scientists - manage your code and data together
Home-page: https://github.com/dataversioncontrol/dvc.git
Author: Dmitry Petrov
Author-email: dmitry@dataversioncontrol.com
License: Apache License 2.0
Download-URL: http://dataversioncontrol.com
Description-Content-Type: text/markdown
Keywords: data science,data version control,machine learning
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Dist: boto (>=2.46.1)
Requires-Dist: checksumdir (>=1.1.4)
Requires-Dist: colorama (>=0.3.9)
Requires-Dist: configobj (>=5.0.6)
Requires-Dist: configparser (>=3.5.0)
Requires-Dist: future (>=0.16.0)
Requires-Dist: gitpython (>=2.1.8)
Requires-Dist: google-cloud (>=0.24.0)
Requires-Dist: google-compute-engine (>=2.4.1)
Requires-Dist: nanotime (>=0.5.2)
Requires-Dist: networkx (>=1.11)
Requires-Dist: ntfsutils (>=0.1.3)
Requires-Dist: pyasn1 (>=0.4.1)
Requires-Dist: pyyaml (>=3.12)
Requires-Dist: schema (>=0.6.7)
Requires-Dist: setuptools (>=34.0.0)
Requires-Dist: zc.lockfile (>=1.2.1)

| Linux & Mac OS | Windows | Code quality | Unit-tests |
|-------------|---------------|--------------|------------|
|[![Build Status](https://travis-ci.org/dataversioncontrol/dvc.svg?branch=master)](https://travis-ci.org/dataversioncontrol/dvc)|[![Build status](https://ci.appveyor.com/api/projects/status/rnqygb4rp1tsjvhb/branch/master?svg=true)](https://ci.appveyor.com/project/dataversioncontrol/dvc/branch/master)|[![Code Climate](https://codeclimate.com/github/dataversioncontrol/dvc/badges/gpa.svg)](https://codeclimate.com/github/dataversioncontrol/dvc)|[![Test Coverage](https://codeclimate.com/github/dataversioncontrol/dvc/badges/coverage.svg)](https://codeclimate.com/github/dataversioncontrol/dvc)|

Data Version Control or DVC is an open source tool for data science projects. 
It helps data scientists manage their code and data together in a simple form of Git-like commands.

# Get started

|Step|Command|
|----|-------|
|Track code and data together|`$ git add train.py` <br /> `$ dvc add images.zip` |
|Connect code and data by commands| `$ dvc run -d images.zip -o images/ unzip -q images.zip` <br /> `$ dvc run -d images/ -d train.py -o model.p python train.py` |
|Make changes and reproduce|`$ vi train.py` <br /> `$ dvc repro model.p.dvc` |
|Share code|`$ git add .` <br /> `$ git commit -m 'The baseline model'` <br />  `$ git push`|
|Share data and ML models|`$ dvc config AWS.StoragePath mybucket/image_cnn` <br/> `$ dvc push`|

See more in [tutorial](https://blog.dataversioncontrol.com/data-version-control-tutorial-9146715eda46).

# Installation

## Packages

Operating system dependent packages are the recommended way to install DVC.
The latest version of the packages can be found at GitHub releases page: https://github.com/dataversioncontrol/dvc/releases

## Python Pip

DVC could be installed via the Python Package Index (PyPI).

```bash
pip install dvc
```

## Homebrew (Mac OS)

### Formula:

```bash
brew install dataversioncontrol/homebrew-dvc/dvc
```

### Cask:

```bash
brew cask install dataversioncontrol/homebrew-dvc/dvc
```

# Links

Website: https://dataversioncontrol.com

Tutorial: https://blog.dataversioncontrol.com/data-version-control-tutorial-9146715eda46

Documentation: http://dataversioncontrol.com/docs/

Discussion: https://discuss.dataversioncontrol.com/

# Related technologies

1. [Git-annex](https://git-annex.branchable.com/) - DVC uses the idea of storing the content of large files (that you don't want to see in your Git repository) in a local key-value store and uses file hardlinks/symlinks instead of the copying actual files.
2. [Git-LFS](https://git-lfs.github.com/).
3. Makefile (and it's analogues). DVC tracks dependencies (DAG). 
4. [Workflow Management Systems](https://en.wikipedia.org/wiki/Workflow_management_system). DVC is workflow management system designed specificaly to manage machine learning experiments. DVC was built on top of Git.

DVC is compatible with Git for storing code and the dependency graph (DAG), but not data files cache.
Data files caches can be transferred separately - now data cache transfer throught AWS S3 and GCP storge are supported.

# How DVC works

![how_dvc_works](https://s3-us-west-2.amazonaws.com/dvc-share/images/0.9/how_dvc_works.png)

# Copyright

This project is distributed under the Apache license version 2.0 (see the LICENSE file in the project root).

By submitting a pull request for this project, you agree to license your contribution under the Apache license version 2.0 to this project.



