-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 868 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='zenkly',
version='0.1.24',
packages=find_packages(),
description='CLI for Zendesk admin tasks',
long_description=long_description,
long_description_content_type="text/markdown",
author='Zena Hirsch',
author_email='[email protected]',
url='https://github.com/zenahirsch/zenkly',
include_package_data=True,
package_data={'zenkly': ['schemas/*.schema']},
install_requires=[
'Click',
'simplejson',
'requests',
'jsonschema',
'colorama',
'configparser',
'gitpython',
'tabulate',
],
entry_points='''
[console_scripts]
zenkly=zenkly.scripts.zenkly:cli
''',
python_requires='>=3.6',
)