-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 976 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
34
from setuptools import (
setup,
find_packages
)
setup(
name="zdsync",
version="0.0.2",
author="Andrew Tribone",
author_email="[email protected]",
url="https://github.com/easypost/zdsync",
description="Command-line tool for syncing Zendesk environments",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="ISC",
install_requires=["zenpy"],
packages=find_packages(exclude=["tests"]),
python_requires=">3.5",
entry_points={
"console_scripts": [
"zdsync = zdsync.cli:main",
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3.7",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: ISC License (ISCL)",
]
)