Skip to content

Commit

Permalink
Fix long description issue + update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankie Simon committed Jul 31, 2018
1 parent 966abf7 commit 8350fa0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
6 changes: 3 additions & 3 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Metadata-Version: 1.2.1
Metadata-Version: 1.2.3
Name: mazerunner_sdk_python
Version: 1.2.1
Version: 1.2.3
Summary: MazeRunner python SDK
Home-page: https://github.com/Cymmetria/mazerunner_sdk_python
Author: Cymmetria
License: BSD-3
Download-URL: https://github.com/Cymmetria/mazerunner_sdk_python/archive/1.2.1.tar.gz
Download-URL: https://github.com/Cymmetria/mazerunner_sdk_python/archive/1.2.3.tar.gz
Description: This library implements a convenient client for MazeRunner™ API for Python.
Using this library, you will be able to easily configure and manipulate the key features
of MazeRunner, such as the creation of a deception campaign, turning decoys on or off, deployment on
Expand Down
8 changes: 0 additions & 8 deletions long_description.txt

This file was deleted.

19 changes: 15 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from setuptools import setup, find_packages

with open("long_description.txt", "r") as fh:
long_description = fh.read()
long_description = """
This library implements a convenient client for MazeRunner™ API for Python.
Using this library, you will be able to easily configure and manipulate the key features
of MazeRunner, such as the creation of a deception campaign, turning decoys on or off, deployment on
remote endpoints, and inspecting alerts with their attached evidence.
See the documentation at https://community.cymmetria.com/api
Fork us at https://github.com/Cymmetria/mazerunner_sdk_python
"""

setup(
name='mazerunner_sdk',
packages=find_packages(),
version='1.2.1',
version='1.2.3',
description='MazeRunner SDK',
long_description=long_description,
author='Cymmetria',
author_email='publicapi@cymmetria.com',
url='https://github.com/Cymmetria/mazerunner_sdk_python',
download_url='https://github.com/Cymmetria/mazerunner_sdk_python/tarball/1.2.1',
download_url='https://github.com/Cymmetria/mazerunner_sdk_python/tarball/1.2.3',
license='BSD 3-Clause',
keywords=['cymmetria', 'mazerunner', 'sdk', 'api'],
install_requires=["argparse==1.2.1",
Expand Down
8 changes: 4 additions & 4 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@

# General information about the project.
project = u'MazeRunner™ SDK'
copyright = u'2015-2017, Cymmetria'
copyright = u'2015-2018, Cymmetria'
author = u'Cymmetria'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'1.2.1'
version = u'1.2.3'
# The full version, including alpha/beta/rc tags.
release = u'1.2.1'
release = u'1.2.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -145,7 +145,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'MazeRunner SDK v1.2.1'
# html_title = u'MazeRunner SDK v1.2.3'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down

0 comments on commit 8350fa0

Please sign in to comment.