-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT: Rename schemacode -> bidsschematools
- Loading branch information
Showing
20 changed files
with
33 additions
and
43 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,4 +1,4 @@ | ||
# schemacode | ||
# BIDS Schema Tools | ||
|
||
A Python library for working with the BIDS schema. | ||
|
||
|
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.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...chemacode/schemacode/tests/test_render.py → ...code/bidsschematools/tests/test_render.py
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
6 changes: 3 additions & 3 deletions
6
...chemacode/schemacode/tests/test_schema.py → ...code/bidsschematools/tests/test_schema.py
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
2 changes: 1 addition & 1 deletion
2
...schemacode/schemacode/tests/test_utils.py → ...acode/bidsschematools/tests/test_utils.py
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,4 @@ | ||
from schemacode import utils | ||
from bidsschematools import utils | ||
|
||
|
||
def test_combine_extensions(): | ||
|
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.
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,19 +1,18 @@ | ||
[metadata] | ||
name = schemacode | ||
version = file:schemacode/data/schema/SCHEMA_VERSION | ||
url = https://github.com/bids-standard/schemacode | ||
name = bidsschematools | ||
version = file:bidsschematools/data/schema/SCHEMA_VERSION | ||
url = https://github.com/bids-standard/bids-specification | ||
author = bids-standard developers | ||
author_email = [email protected] | ||
description = Python tools for working with the BIDS schema. | ||
long_description = file:README.md | ||
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM | ||
license = MIT | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Science/Research | ||
Topic :: Scientific/Engineering :: Information Analysis | ||
License :: OSI Approved :: MIT License | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
|
@@ -48,18 +47,10 @@ all = | |
%(tests)s | ||
|
||
[options.package_data] | ||
schemacode = | ||
bidsschematools = | ||
data/schema/SCHEMA_VERSION | ||
data/schema/**/*.yaml | ||
|
||
[versioneer] | ||
VCS = git | ||
style = pep440 | ||
versionfile_source = schemacode/_version.py | ||
versionfile_build = schemacode/_version.py | ||
tag_prefix = v | ||
parentdir_prefix = | ||
|
||
[flake8] | ||
max-line-length = 99 | ||
exclude = *build/ | ||
|