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    
zendesk_sync / setup.py
Size: Mime:
#!/usr/bin/env python2
from setuptools import setup, find_packages


VERSION = '0.5.4'


setup(name='zendesk_sync',
      url='https://github.com/docker/zendesk-sync',
      author='Viktor Stanchev',
      author_email='viktor@docker.com',
      version=VERSION,
      packages=find_packages(),
      py_modules=['zendesk_sync'],
      install_requires=["zdesk>=2.2.1,<3"]
      )