Skip to content

Commit 9e61560

Browse files
authored
Release 1.0.1 (#9)
Updated license to MIT Added markdown Readme
1 parent ceaeeba commit 9e61560

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: test build publish
2+
3+
build:
4+
python setup.py sdist bdist_wheel --universal
5+
6+
publish:
7+
twine upload dist/*
8+
9+
test:
10+
robot --loglevel DEBUG --pythonpath src/ atest/
11+

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@
1111
'requests==2.18.4'
1212
]
1313

14+
with open('README.md') as f:
15+
LONG_DESCRIPTION = f.read()
16+
1417
CLASSIFIERS = '''
1518
Development Status :: 5 - Production/Stable
16-
License :: OSI Approved :: Apache Software License
19+
License :: OSI Approved :: MIT License
1720
Operating System :: OS Independent
1821
Programming Language :: Python
1922
Programming Language :: Python :: 2
@@ -29,6 +32,8 @@
2932
packages=find_packages('src'),
3033
version=VERSION,
3134
description=DESCRIPTION,
35+
long_description=LONG_DESCRIPTION,
36+
long_description_content_type="text/markdown",
3237
author='Mikhail Naletov',
3338
author_email='admin@markeloff.net',
3439
url='https://github.com/okgolove/robotframework-jenkins',

src/JenkinsLibrary/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.0.0'
1+
VERSION = '1.0.1'

0 commit comments

Comments
 (0)