-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
2 additions
and
2 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
99464e6
There was a problem hiding this comment.
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 installsdata 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'],
}
)