-
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 #7 from linkml/switch-to-poetry
switch to poetry
- Loading branch information
Showing
13 changed files
with
292 additions
and
49 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,4 @@ | ||
RUN = pipenv run | ||
RUN = poetry run | ||
|
||
test: | ||
$(RUN) python -m unittest discover -p 'test_*.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
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 |
---|---|---|
@@ -1,3 +1,51 @@ | ||
[tool.poetry] | ||
name = "linkml-dataops" | ||
version = "0.0.0" | ||
description = "Data Operations API for the Linked Open Data Modeling Language" | ||
authors = [ | ||
"Chris Mungall <[email protected]>", | ||
"Harold Solbrig <[email protected]>", | ||
] | ||
|
||
readme = "README.md" | ||
|
||
homepage = "https://linkml.io/linkml/" | ||
repository = "https://github.com/linkml/linkml-dataops" | ||
documentation = "https://linkml.io/linkml/" | ||
license = "CC0 1.0 Universal" | ||
|
||
keywords = ["schema", "linked data", "data modeling", "rdf", "owl", "biolink"] | ||
|
||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Healthcare Industry", | ||
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10" | ||
] | ||
|
||
[tool.poetry.scripts] | ||
gen-api-datamodel = "linkml_dataops.generators.apigenerator:cli" | ||
gen-crud-datamodel = "linkml_dataops.generators.crudmodelcreator:cli" | ||
gen-python-api = "linkml_dataops.generators.pyapigenerator:cli" | ||
linkml-apply = "linkml_dataops.changer.jsonpatch_changer:cli" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7.6" | ||
linkml-runtime = ">= 1.3.0" | ||
jsonpath-ng = "*" | ||
"ruamel.yaml" = "*" | ||
jsonpatch = "*" | ||
|
||
[tool.poetry.dev-dependencies] | ||
jinja2 = "*" | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta:__legacy__" | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
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.