-
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.
Add $id field to schema with versioned URL
- Loading branch information
Showing
6 changed files
with
28 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<!-- Thank you for your Pull Request! --> | ||
<!-- Please make sure your commit increments the package version in package.json, package-lock.json, and schema.json. --> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,9 +1,15 @@ | ||
from json import loads | ||
from pathlib import Path | ||
from setuptools import setup | ||
|
||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / 'README.md').read_text() | ||
|
||
with open(this_directory / 'package.json', 'r') as f: | ||
package_json = f.read() | ||
|
||
version = loads(package_json).get('version') | ||
|
||
setup( | ||
author='camargo', | ||
author_email='[email protected]', | ||
|
@@ -14,5 +20,5 @@ | |
name='seq-json-schema', | ||
packages=['seq-json-schema'], | ||
url='https://github.com/NASA-AMMOS/seq-json-schema', | ||
version='1.0.19' | ||
version=version | ||
) |