Skip to content

Commit

Permalink
Fix setup.py so wheels are downloaded when available.
Browse files Browse the repository at this point in the history
Need to call `splitlines()` otherwise the `setup` function gets confused.
  • Loading branch information
th3w1zard1 committed Nov 11, 2023
1 parent 2fc3961 commit c625092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
VERSION = "1.7.0"
AUTHOR = "Nicholas Hugi"
DESCRIPTION = "Read, modify and write files used by KotOR's game engine."
PACKAGES = find_namespace_packages(exclude=["tests", "docs"])
PACKAGES = find_namespace_packages(exclude=["tests", "docs", "scripts", "toolkit"])
URL = "https://github.com/NickHugi/PyKotor"

README = (HERE / "README.md").read_text()
REQUIREMENTS = (HERE / "requirements.txt").read_text()
REQUIREMENTS = (HERE / "requirements.txt").read_text().splitlines()

setup(
name=NAME,
Expand Down

0 comments on commit c625092

Please sign in to comment.