Skip to content

Commit

Permalink
Version 2.6.0 (#139)
Browse files Browse the repository at this point in the history
Updating version to 2.6.0
  • Loading branch information
kevinemoore authored Jul 14, 2017
1 parent 76d9278 commit 99464e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def readme():

setup(
name="quilt",
version="2.5.2",
version="2.6.0",
packages=find_packages(),
description='Quilt is an open-source data frame registry',
long_description=readme(),
Expand All @@ -32,7 +32,7 @@ def readme():
author_email='contact@quiltdata.io',
license='LICENSE',
url='https://github.com/quiltdata/quilt',
download_url='https://github.com/quiltdata/quilt/releases/tag/2.5.2',
download_url='https://github.com/quiltdata/quilt/releases/tag/2.6.0',
keywords='quilt quiltdata shareable data dataframe package platform pandas',
install_requires=[
'appdirs>=1.4.0',
Expand Down

1 comment on commit 99464e6

@M1haylov
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

from setuptools import setup, find_packages

def readme():
readme_short = """
quilt is a command-line utility that builds, pushes, and installs
data packages. A data package <https://blog.quiltdata.com/data-packages-for-fast-reproducible-python-analysis-c74b78015c7f>_
is a versioned bundle of serialized data wrapped in a Python module.
quilt pushes to and pulls from the package registry at quiltdata.com.
Visit quiltdata.com <https://quiltdata.com>_ for docs and more.
"""
return readme_short

setup(
name="quilt",
version="2.6.0",
packages=find_packages(),
description='Quilt is an open-source data frame registry',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
author='quiltdata',
author_email='contact@quiltdata.io',
license='LICENSE',
url='https://github.com/quiltdata/quilt',
download_url='https://github.com/quiltdata/quilt/releases/tag/2.6.0',
keywords='quilt quiltdata shareable data dataframe package platform pandas',
install_requires=[
'appdirs>=1.4.0',
'future>=0.16.0',
'packaging>=16.8',
'pandas>=0.19.2',
'pyarrow>=0.4.0',
'pyOpenSSL>=16.2.0',
'pyyaml>=3.12',
'requests>=2.12.4',
'responses>=0.5.1',
'six>=1.10.0',
'tables>=3.3.0',
'tqdm>=4.11.2',
'xlrd>=1.0.0',
],
include_package_data=True,
entry_points={
'console_scripts': ['quilt=quilt.tools.main:main'],
}
)

Please sign in to comment.