Skip to content

Commit

Permalink
Merge pull request #586 from efiop/master
Browse files Browse the repository at this point in the history
pypi fixes
  • Loading branch information
efiop authored Mar 21, 2018
2 parents a7ca3fc + 4d8dbbf commit 330d7e4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dvc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
----
Make your data science projects reproducible and shareable.
"""
VERSION = '0.9.1'
VERSION = '0.9.2'
__version__ = VERSION
1 change: 1 addition & 0 deletions scripts/pypi_upload.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ if [ ! -d "dvc" ]; then
fi

rm -rf dist/
pip install m2r twine
python setup.py bdist_wheel --universal
twine upload dist/*
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
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",
"google-compute-engine>=2.4.1", #required by boto
Expand All @@ -27,8 +37,7 @@
name='dvc',
version=VERSION,
description='Git for data scientists - manage your code and data together',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
long_description=readme,
author='Dmitry Petrov',
author_email='dmitry@dataversioncontrol.com',
url='https://github.com/dataversioncontrol/dvc.git',
Expand Down

0 comments on commit 330d7e4

Please sign in to comment.