diff --git a/scripts/pypi_upload.sh b/scripts/pypi_upload.sh index 0e5bcc8aed..3ee7af977c 100755 --- a/scripts/pypi_upload.sh +++ b/scripts/pypi_upload.sh @@ -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/* diff --git a/setup.py b/setup.py index 22e322dfe3..bd5433af49 100644 --- a/setup.py +++ b/setup.py @@ -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='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',