-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from glycojones/onemodel
Merge onemodel branch into master
- Loading branch information
Showing
43 changed files
with
291,421 additions
and
23,721 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 |
---|---|---|
@@ -1,4 +1,22 @@ | ||
build/ | ||
.vscode | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
PKG-INFO | ||
*.py[co] | ||
*$py.class | ||
|
||
# Mac meta stuff | ||
# DS_Store | ||
.DS_Store | ||
|
||
# Ignore build related files | ||
/dist | ||
/build | ||
/.eggs/ | ||
/pyrun/ | ||
|
||
# Ignore accidental test data | ||
/*.cif | ||
/*.pdb | ||
/*.ent | ||
/*.json | ||
/*.mtz | ||
/*.crd |
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,44 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "iris_validation" | ||
dynamic=["version"] | ||
description = "A package for interactive all-in-one graphical validation of 3D protein model iterations" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
] | ||
authors = [ | ||
{ name = "William Rochira", email = "[email protected]" }, | ||
{ name = "Jon Agirre", email = "[email protected]" } | ||
] | ||
maintainers = [ | ||
{ name = "Jon Agirre", email = "[email protected]" }, | ||
] | ||
dependencies = [ | ||
"svgwrite == 1.3.1" | ||
] | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools_scm] | ||
version_file = "src/iris_validation/_version.py" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/glycojones/iris-validation" | ||
Issues = "https://github.com/glycojones/iris-validation/issues" | ||
|
||
[tool.pytest.ini_options] | ||
markers = [ | ||
"slow: marks tests as slow (deselect with '-m \"not slow\"')", | ||
"simple: a simple test to get output quickly (deselect with '-m \"not simple\"')", | ||
"tortoize: runs tortoize tests (deselect with '-m \"not tortoize\"')", | ||
"molprobity: runs molprobity tests (deselect with '-m \"not molprobity\"')", | ||
"problem", | ||
] |
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
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
1 change: 1 addition & 0 deletions
1
iris_validation/graphics/js/constants.js → src/iris_validation/graphics/js/constants.js
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
Oops, something went wrong.