Repository URL to install this package:
|
Version:
0.5.4 ▾
|
zendesk_sync
/
setup.py
|
|---|
#!/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"]
)