-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated license to MIT Added markdown Readme
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = '1.0.0' | ||
VERSION = '1.0.1' |