Skip to content

Commit

Permalink
Merge pull request #587 from efiop/master
Browse files Browse the repository at this point in the history
pypi fixes and 0.9.3
  • Loading branch information
efiop authored Mar 21, 2018
2 parents 330d7e4 + 3e1923f commit af6ac42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 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.2'
VERSION = '0.9.3'
__version__ = VERSION
2 changes: 1 addition & 1 deletion scripts/pypi_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ if [ ! -d "dvc" ]; then
fi

rm -rf dist/
pip install m2r twine
pip install twine
python setup.py bdist_wheel --universal
twine upload dist/*
12 changes: 1 addition & 11 deletions setup.py
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",
Expand All @@ -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='dmitry@dataversioncontrol.com',
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',
Expand Down

0 comments on commit af6ac42

Please sign in to comment.