Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hub-client / setup.py
Size: Mime:
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import os
from setuptools import setup, find_packages
import dockerhub

version = dockerhub.__version__

setup(
    name='hub-client',
    version=version,
    description="""Python client for docker hub""",
    author='Docker Hub',
    author_email='saas@docker.com',
    packages=find_packages(),
    include_package_data=True,
    install_requires=[
        'python-json-logger>=0.1.2',
        'statsd',
        'bugsnag==2.2.0',
        'wheel==0.24.0',
        'requests==2.10.0',
        'django-uuidfield==0.5.0',
        'django>=1.6.3,<1.7.0',
        'djangorestframework==2.4.4',
        'djangorestframework-jwt==1.1.0',
        'PyJWT==1.3.0',
        'datadog==0.15.0',
        'pytz',
        'guppy==0.1.10',
        'celery>=3.1,<3.2',
        'cryptography>=1.2.1,<2',
    ],
    zip_safe=False,
    keywords='hub-client',
)