Skip to content

Commit

Permalink
Release 1.0.1 (#9)
Browse files Browse the repository at this point in the history
Updated license to MIT
Added markdown Readme
  • Loading branch information
okgolove authored May 12, 2019
1 parent ceaeeba commit 9e61560
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: test build publish

build:
python setup.py sdist bdist_wheel --universal

publish:
twine upload dist/*

test:
robot --loglevel DEBUG --pythonpath src/ atest/

7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
'requests==2.18.4'
]

with open('README.md') as f:
LONG_DESCRIPTION = f.read()

CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Expand All @@ -29,6 +32,8 @@
packages=find_packages('src'),
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author='Mikhail Naletov',
author_email='[email protected]',
url='https://github.com/okgolove/robotframework-jenkins',
Expand Down
2 changes: 1 addition & 1 deletion src/JenkinsLibrary/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.0.0'
VERSION = '1.0.1'

0 comments on commit 9e61560

Please sign in to comment.