forked from ZettaIO/cachet-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.09 KB
/
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
setup(
name="cachet-client",
version="4.0.1",
description="A python 3 client for the Cachet API",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/zettaio/cachet-client",
author="Einar Forselv",
author_email="eforselv@gmail.com",
maintainer="Einar Forselv",
maintainer_email="eforselv@gmail.com",
packages=['cachetclient', 'cachetclient.v1'],
include_package_data=True,
keywords=['cachet', 'client', 'api'],
python_requires='>=3.5',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: BSD License',
],
install_requires=[
'requests>=2.21.0'
],
entry_points={'console_scripts': [
'cachet = cachetclient.cli:execute_from_command_line',
]},
)