Skip to content

Commit

Permalink
gg
Browse files Browse the repository at this point in the history
  • Loading branch information
Goekdeniz-Guelmez committed Jul 31, 2024
1 parent 12d5c6e commit 7a6e7f4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
# Get the project root directory
root_dir = Path(__file__).parent

# Add the package directory to the Python path
package_dir = root_dir / "model"

# Read the requirements from the requirements.txt file in the root directory
requirements_file = root_dir / "requirements.txt"
if requirements_file.exists():
Expand All @@ -19,7 +16,7 @@

# Import the version from the package
version = {}
with open(str(package_dir / "version.py")) as f:
with open(root_dir / "KANama/model/version.py") as f:
exec(f.read(), version)

# Setup configuration
Expand All @@ -34,7 +31,7 @@
url="https://github.com/Goekdeniz-Guelmez/KANama",
license="MIT",
install_requires=requirements,
packages=find_packages(),
packages=find_packages(include=["KANama", "KANama.*"]),
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3.10"
Expand Down

0 comments on commit 7a6e7f4

Please sign in to comment.