-
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.
Using poetry to manage dependencies and packaging
- Loading branch information
1 parent
5f8f152
commit d65021b
Showing
3 changed files
with
332 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
[tool.poetry] | ||
name = "mepo" | ||
version = "v2.0.0" | ||
authors = [ | ||
{name = "GMAO SI Team", email = "[email protected]"}, | ||
] | ||
description = "Tool to manage (m)ultiple r(epo)sitories" | ||
requires-python = ">= 3.9" | ||
license = {file = "LICENSE"} | ||
version = "2.0.0" | ||
description = "A tool for managing (m)ultiple r(epo)s" | ||
authors = ["GMAO SI Team <[email protected]>"] | ||
license = "LICENSE" | ||
readme = "README.md" | ||
dependencies = [ | ||
"pyyaml>=6.0.1", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/GEOS-ESM/mepo" | ||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
PyYAML = "^6.0.1" | ||
black = "^24.4.2" | ||
mdutils = "^1.6.0" | ||
|
||
[project.scripts] | ||
mepo = "mepo.__main__:main" | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |
Oops, something went wrong.