Skip to content

Commit

Permalink
Update setup.py with new version number and license (#1)
Browse files Browse the repository at this point in the history
* Update setup.py with new version number and license

* Rollback license update to match the state on PyPI
  • Loading branch information
kevinemoore authored and Quilt Data committed Feb 14, 2017
1 parent cac2e3c commit 5be9853
Showing 1 changed file with 31 additions and 1 deletion.
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='LICENSE',
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

0 comments on commit 5be9853

Please sign in to comment.