Skip to content

Commit

Permalink
Rename dirs and files to suit expected format of poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
MolarFox committed Mar 14, 2023
1 parent 00c9e03 commit d5247f1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/python3

# molpro-dirman: CLI tool to manage project serials locally
# molpro_dirman: CLI tool to manage project serials locally
# Copyright (C) 2022 MolarFox

# This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -88,7 +88,7 @@ def create():

@app.command()
def about():
"Output some information about molpro-dirman"
"Output some information about molpro_dirman"
print(dedent(
f"""
MolarFox Prototyping: Project Directory Manager
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions molpro-dirman/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tool.poetry]
name = "molpro-dirman"
name = "molpro_dirman"
version = "0.1.0"
description = "CLI tool for managing local project directories"
authors = ["MolarFox <molar@molarfox.io>"]
license = "gpl-3.0"
readme = "README.md"
packages = [{include = "molpro_dirman"}]

[tool.poetry.dependencies]
python = "^3.10"
Expand Down
8 changes: 4 additions & 4 deletions molpro-dirman/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import importlib

main = importlib.import_module("molpro-dirman.__main__")
config = importlib.import_module("molpro-dirman.config")
sys_read = importlib.import_module("molpro-dirman.sys_read")
sys_write = importlib.import_module("molpro-dirman.sys_write")
main = importlib.import_module("molpro_dirman.__main__")
config = importlib.import_module("molpro_dirman.config")
sys_read = importlib.import_module("molpro_dirman.sys_read")
sys_write = importlib.import_module("molpro_dirman.sys_write")

0 comments on commit d5247f1

Please sign in to comment.