Skip to content

Commit b264efa

Browse files
committed
move scripts from pypackit to proman
1 parent c7bdd6b commit b264efa

13 files changed

Lines changed: 14 additions & 15 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pypackit.script import build, cca, lint, render, version
1+
from proman.script import build, cca, lint, render, version
22

33
__all__ = [
44
"build",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from proman.script.build import conda, python
2+
3+
__all__ = [
4+
"conda",
5+
"python",
6+
]

.manager/src/pypackit/script/build/conda.py renamed to .manager/src/proman/script/build/conda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from pathlib import Path
2121
from typing import TYPE_CHECKING
2222

23-
import pypackit.script.version as _script_version
23+
import proman.script.version as _script_version
2424

2525
if TYPE_CHECKING:
2626
from typing import Literal
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from proman.script.render import pypi
2+
3+
__all__ = [
4+
"pypi",
5+
]
File renamed without changes.

.manager/src/pypackit/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from loggerman import logger
44

5-
from pypackit import script
5+
from proman import script
66

77

88
def cli():

0 commit comments

Comments
 (0)