Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
niklases committed Jul 28, 2024
1 parent 84af92c commit 05d0529
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
# or for editable/develop mode with: pip install -e .


import os
from setuptools import setup, find_packages
from pathlib import Path

from pypef import __version__


this_directory = Path(__file__).parent
long_description = Path.joinpath(this_directory, "README.md").read_text()
directory_readme = os.path.join(os.path.dirname(__file__), "README.md")
with open(directory_readme, 'r') as readme:
long_description = readme.read()

long_description = long_description.replace(".github/imgs/", "https://github.com/niklases/PyPEF/raw/main/.github/imgs/")

with open("requirements.txt", "r", encoding="utf-8") as install_requirements:
requirements = install_requirements.read()
Expand Down

0 comments on commit 05d0529

Please sign in to comment.