forked from quiltdata/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.89 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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.7.0",
packages=find_packages(),
description='Quilt is a data package manager',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'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='[email protected]',
license='LICENSE',
url='https://github.com/quiltdata/quilt',
download_url='https://github.com/quiltdata/quilt/releases/tag/2.7.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,<0.6.1', # 0.6.1 is broken, but already fixed in master
'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'],
}
)