Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py with new version number and license #1

Merged
merged 2 commits into from
Feb 14, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 31 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,38 @@
from setuptools import setup, find_packages

def readme():
readme_short = """
[Quilt](https://beta.quiltdata.com/) is a data package manager.
You can use data packages from the community, or publish packages for others to use.

`quilt` is the command-line client that builds, retrieves, and stores
packages. `quilt` works in conjunction with a server-side registry,
not covered in this document. `quilt` currently pushes to and pulls from
the registry at [beta.quiltdata.com](https://beta.quiltdata.com/). In the near
future users will be able to browse packages in the registry.
"""
return readme_short

setup(
name="quilt",
version="2.0",
version="2.0.2",
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.5',
],
author='quiltdata',
author_email='founders@quiltdata.io',
license='Apache License 2.0',
url='https://github.com/quiltdata/quilt',
download_url='https://github.com/quiltdata/quilt/releases/tag/v2.0.0-alpha',
keywords='quilt quiltdata shareable data dataframe package platform pandas',
install_requires=[
'appdirs>=1.4.0',
'future>=0.16.0',
Expand All @@ -15,6 +44,7 @@
'tables>=3.3.0',
'xlrd>=1.0.0',
],
include_package_data=True,
entry_points={
'console_scripts': ['quilt=quilt.tools.command:main'],
}
Expand Down