Skip to content

Commit

Permalink
Fie hyphen praise setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
sdfordham committed Mar 13, 2023
1 parent 02d0a9d commit d8a5228
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "transmission_autoloader"
name = "tautoloader"
requires-python = ">=3.8"

[project.scripts]
my-script = "transmission_autoloader.cli:main"
version = "0.0.1"
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[metadata]
name = tautoloader
version = "0.0.1"

[options]
packages = tautoloader,
python_requires = >=3.8
6 changes: 3 additions & 3 deletions src/cli.py → tautoloader/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from pathlib import Path
from typing import Optional

from src.torrent import TorrentData
from src.transmission import TransmissionCommand
from src.methods import find_files, parse_list_output
from .torrent import TorrentData
from .transmission import TransmissionCommand
from .methods import find_files, parse_list_output


def main(
Expand Down
2 changes: 1 addition & 1 deletion src/methods.py → tautoloader/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path
from typing import Optional

from src.transmission import TransmissionRow
from .transmission import TransmissionRow


def find_files(
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit d8a5228

Please sign in to comment.