-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from efiop/master
pypi fixes and 0.9.3
- Loading branch information
Showing
3 changed files
with
3 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
import os | ||
import platform | ||
from setuptools import setup, find_packages | ||
from distutils.errors import DistutilsPlatformError | ||
from dvc import VERSION | ||
|
||
readme_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.md') | ||
try: | ||
from m2r import parse_from_file | ||
readme = parse_from_file(readme_file) | ||
except ImportError: | ||
# m2r may not be installed in user environment | ||
with open(readme_file) as f: | ||
readme = f.read() | ||
|
||
install_requires = [ | ||
"boto>=2.46.1", | ||
|
@@ -37,10 +28,9 @@ | |
name='dvc', | ||
version=VERSION, | ||
description='Git for data scientists - manage your code and data together', | ||
long_description=readme, | ||
author='Dmitry Petrov', | ||
author_email='[email protected]', | ||
url='https://github.com/dataversioncontrol/dvc.git', | ||
url='https://github.com/dataversioncontrol/dvc', | ||
license='Apache License 2.0', | ||
install_requires=install_requires, | ||
keywords='data science, data version control, machine learning', | ||
|