-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: V0.44 Adjust error handling/reporting for atom counts in DictM…
…ethodEntityInstanceHelper(), update GlycanProvider() api in DictMethodResourceProvider()
- Loading branch information
1 parent
2449818
commit a9c0747
Showing
12 changed files
with
30 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# | ||
# File: py-rcsb_utils_chemref/MANIFEST.in | ||
# File: py-rcsb_utils_dictionary/MANIFEST.in | ||
# | ||
include HISTORY.txt | ||
# | ||
include requirements.txt | ||
include README.md | ||
# |
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
__author__ = "John Westbrook" | ||
__email__ = "[email protected]" | ||
__license__ = "Apache 2.0" | ||
__version__ = "0.43" | ||
__version__ = "0.44" |
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
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 |
---|---|---|
|
@@ -14,14 +14,22 @@ | |
with open("rcsb/utils/dictionary/__init__.py", "r") as fd: | ||
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) | ||
|
||
# Load packages from requirements*.txt | ||
with open("requirements.txt", "r") as ifh: | ||
packagesRequired = [ln.strip() for ln in ifh.readlines()] | ||
|
||
with open("README.md", "r") as ifh: | ||
longDescription = ifh.read() | ||
|
||
if not version: | ||
raise RuntimeError("Cannot find version information") | ||
|
||
setup( | ||
name=thisPackage, | ||
version=version, | ||
description="RCSB Python Dictionary Utility Classes", | ||
long_description="See: README.md", | ||
long_description_content_type="text/markdown", | ||
long_description=longDescription, | ||
author="John Westbrook", | ||
author_email="[email protected]", | ||
url="https://github.com/rcsb/py-rcsb_utils_dictionary", | ||
|
@@ -39,22 +47,7 @@ | |
), | ||
entry_points={}, | ||
# | ||
install_requires=[ | ||
"scipy", | ||
"numpy", | ||
"mmcif >= 0.57", | ||
"rcsb.utils.io >= 1.12", | ||
"rcsb.utils.config >= 0.35", | ||
"rcsb.utils.multiproc >= 0.17", | ||
"rcsb.utils.validation >= 0.22", | ||
"rcsb.utils.chemref >= 0.72", | ||
"rcsb.utils.citation >= 0.15", | ||
"rcsb.utils.ec >= 0.21", | ||
"rcsb.utils.taxonomy >= 0.32", | ||
"rcsb.utils.seq >= 0.60", | ||
"rcsb.utils.struct >= 0.28", | ||
"rcsb.utils.repository >= 0.12", | ||
], | ||
install_requires=packagesRequired, | ||
packages=find_packages(exclude=["rcsb.utils.tests-dictionary", "rcsb.utils.tests-*", "tests.*"]), | ||
package_data={ | ||
# If any package contains *.md or *.rst ... files, include them: | ||
|