-
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.
Allow custom Rivet identifier, fix ErrorBreakdown, improve PyPI release
* Fix check for non-numeric independent variables in ObjectWrapper. * Define bin number excluding non-numeric y values in ErrorBreakdown. * Allow custom Rivet identifier as YAML qualifier for YODA export. * Build wheel archive on Travis CI to push to PyPI for tagged release. * Change PyPI authentication to use (encrypted) API token not password. * Add badge to README showing latest version available from PyPI. * Specify recommended ROOT and YODA versions in README. * Add long description to setup.cfg as contents of README. * Bump version to 0.1.35 in preparation for tagged release. Signed-off-by: Graeme Watt <[email protected]>
- Loading branch information
1 parent
70dc5f9
commit 1ed1771
Showing
7 changed files
with
46 additions
and
25 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
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
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,3 +1,3 @@ | ||
# this file ideally should only contain __version__ declaration, as anything else | ||
# may break setup.py and PyPI uploads | ||
__version__ = '0.1.34' | ||
__version__ = '0.1.35' |
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
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
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,2 +1,3 @@ | ||
[metadata] | ||
description-file = README.md | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst |
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,4 +1,7 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"Library providing means of conversion between oldhepdata format to new one, and new one to csv / yoda / root etc." | ||
|
||
import os | ||
from setuptools import setup | ||
import re | ||
|
@@ -42,11 +45,10 @@ def get_version(): | |
packages=['hepdata_converter', 'hepdata_converter.parsers', 'hepdata_converter.writers', 'hepdata_converter.testsuite'], | ||
package_data={'hepdata_converter': get_all_datafiles(package='hepdata_converter/testsuite', path='testdata')}, | ||
include_package_data=True, | ||
|
||
url='https://github.com/HEPData/hepdata-converter/', | ||
url='https://github.com/HEPData/hepdata-converter', | ||
license='GPL', | ||
author='HEPData Team', | ||
author_email='[email protected]', | ||
description='Library providing means of conversion between oldhepdata format to new one, and new one to csv / yoda / root etc.', | ||
download_url='https://github.com/HEPData/hepdata-converter/tarball/%s' % get_version(), | ||
description=__doc__, | ||
download_url='https://github.com/HEPData/hepdata-converter/tarball/%s' % get_version() | ||
) |