Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 16 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
from setuptools import setup, find_packages

setup(name='cyberwatch_api',
version='0.3.7',
description='Python Api client for the Cyberwatch software',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='CyberWatch SAS',
py_modules=['cyberwatch_api'],
packages=find_packages(include=['cli.*']),
license='MIT',
install_requires=['requests>=2.20.1'],
scripts=['cli/cyberwatch-cli']
)
setup(
name='cyberwatch_api',
version='0.3.8',
description='Python Api client for the Cyberwatch software',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='CyberWatch SAS',
py_modules=['cyberwatch_api'],
packages=find_packages(include=['cli.*']),
license='MIT',
install_requires=[
'requests>=2.20.1',
'chardet'
],
scripts=['cli/cyberwatch-cli']
)
Loading