-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
428 additions
and
1,655 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# lvmtools | ||
# lvmopstools | ||
|
||
![Versions](https://img.shields.io/badge/python->3.10-blue) | ||
[![Documentation Status](https://readthedocs.org/projects/lvmtools/badge/?version=latest)](https://lvmtools.readthedocs.io/en/latest/) | ||
[![Test](https://github.com/sdss/lvmtools/actions/workflows/test.yml/badge.svg)](https://github.com/sdss/lvmtools/actions/workflows/test.yml) | ||
[![codecov](https://codecov.io/gh/sdss/lvmtools/branch/main/graph/badge.svg)](https://codecov.io/gh/sdss/lvmtools) | ||
[![Documentation Status](https://readthedocs.org/projects/lvmopstools/badge/?version=latest)](https://lvmopstools.readthedocs.io/en/latest/) | ||
[![Test](https://github.com/sdss/lvmopstools/actions/workflows/test.yml/badge.svg)](https://github.com/sdss/lvmopstools/actions/workflows/test.yml) | ||
[![codecov](https://codecov.io/gh/sdss/lvmopstools/branch/main/graph/badge.svg)](https://codecov.io/gh/sdss/lvmopstools) | ||
|
||
LVM tools and utilities | ||
LVM tools and utilities for operations. | ||
|
||
**Documentation:** https://lvmtools.readthedocs.io/en/latest/index.html | ||
**Documentation:** https://lvmopstools.readthedocs.io/en/latest/index.html |
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 @@ | ||
(lvmtools-changelog)= | ||
(lvmopstools-changelog)= | ||
|
||
```{include} ../../CHANGELOG.md | ||
``` |
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
Large diffs are not rendered by default.
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,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "lvmtools" | ||
name = "lvmopstools" | ||
version = "0.1.0a0" | ||
description = "LVM tools and utilities" | ||
description = "LVM tools and utilities for operations" | ||
authors = ["José Sánchez-Gallego <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
readme = "README.md" | ||
homepage = "https://github.com/sdss/lvmtools" | ||
repository = "https://github.com/sdss/lvmtools" | ||
documentation = "https://lvmtools.readthedocs.org" | ||
homepage = "https://github.com/sdss/lvmopstools" | ||
repository = "https://github.com/sdss/lvmopstools" | ||
documentation = "https://lvmopstools.readthedocs.org" | ||
keywords = ["astronomy", "software"] | ||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
|
@@ -20,9 +20,9 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries :: Python Modules" | ||
] | ||
packages = [ | ||
{ include = "lvmtools", from = "src" } | ||
{ include = "lvmopstools", from = "src" } | ||
] | ||
include = ["src/lvmtools/*.yaml"] | ||
include = ["src/lvmopstools/*.yaml"] | ||
|
||
|
||
[tool.poetry.dependencies] | ||
|
@@ -66,7 +66,7 @@ unfixable = ["F841"] | |
"__init__.py" = ["F403", "E402", "F401"] | ||
|
||
[tool.ruff.isort] | ||
known-first-party = ["lvmtools"] | ||
known-first-party = ["lvmopstools"] | ||
lines-after-imports = 2 | ||
section-order = ["future", "standard-library", "typing", "third-party", "sdss", "first-party", "local-folder"] | ||
|
||
|
@@ -75,16 +75,16 @@ typing = ["typing"] | |
sdss = ["sdsstools"] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--cov lvmtools --cov-report xml --cov-report html --cov-report term -W ignore" | ||
addopts = "--cov lvmopstools --cov-report xml --cov-report html --cov-report term -W ignore" | ||
asyncio_mode = "auto" | ||
|
||
[tool.coverage.run] | ||
branch = true | ||
include = ["src/lvmtools/*"] | ||
include = ["src/lvmopstools/*"] | ||
omit = [ | ||
"*/__init__.py", | ||
"src/lvmtools/__main__.py", | ||
"src/lvmtools/types.py", | ||
"src/lvmopstools/__main__.py", | ||
"src/lvmopstools/types.py", | ||
] | ||
|
||
[tool.coverage.report] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
# | ||
# @Author: José Sánchez-Gallego ([email protected]) | ||
# @Date: 2024-01-02 | ||
# @Filename: test_lvmtools.py | ||
# @Filename: test_lvmopstools.py | ||
# @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause) | ||
|
||
from __future__ import annotations | ||
|
||
|
||
async def test_lvmtools_import(): | ||
import lvmtools | ||
async def test_lvmopstools_import(): | ||
import lvmopstools | ||
|
||
assert lvmtools is not None | ||
assert lvmopstools is not None |