File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 1111 'requests==2.18.4'
1212]
1313
14+ with open ('README.md' ) as f :
15+ LONG_DESCRIPTION = f .read ()
16+
1417CLASSIFIERS = '''
1518Development Status :: 5 - Production/Stable
16- License :: OSI Approved :: Apache Software License
19+ License :: OSI Approved :: MIT License
1720Operating System :: OS Independent
1821Programming Language :: Python
1922Programming Language :: Python :: 2
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' ,
Original file line number Diff line number Diff line change 1- VERSION = '1.0.0 '
1+ VERSION = '1.0.1 '
You can’t perform that action at this time.
0 commit comments