Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
WT-MM committed Jan 13, 2025
1 parent 9daebf5 commit eba77c8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
long_description: str = f.read()


with open("kos-sim/requirements.txt", "r", encoding="utf-8") as f:
with open("kos_sim/requirements.txt", "r", encoding="utf-8") as f:
requirements: list[str] = f.read().splitlines()


with open("kos-sim/requirements-dev.txt", "r", encoding="utf-8") as f:
with open("kos_sim/requirements-dev.txt", "r", encoding="utf-8") as f:
requirements_dev: list[str] = f.read().splitlines()


with open("kos-sim/__init__.py", "r", encoding="utf-8") as fh:
with open("kos_sim/__init__.py", "r", encoding="utf-8") as fh:
version_re = re.search(r"^__version__ = \"([^\"]*)\"", fh.read(), re.MULTILINE)
assert version_re is not None, "Could not find version in kos-sim/__init__.py"
assert version_re is not None, "Could not find version in kos_sim/__init__.py"
version: str = version_re.group(1)


setup(
name="kos-sim",
name="kos_sim",
version=version,
description="The kos-sim project",
author="Wesley Maa",
Expand All @@ -36,7 +36,7 @@
install_requires=requirements,
tests_require=requirements_dev,
extras_require={"dev": requirements_dev},
packages=["kos-sim"],
packages=["kos_sim"],
# entry_points={
# "console_scripts": [
# "kos-sim.cli:main",
Expand Down

0 comments on commit eba77c8

Please sign in to comment.