Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Noordsestern authored Sep 12, 2024
1 parent 6a360c8 commit 98b2561
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
Programming Language :: Python :: 3.12
""".strip().splitlines()


def get_long_description():
with open("README.md", "r") as file:
return file.read()

def get_requirements():
with open("requirements.txt", "r") as file:
return file.readlines()
Expand All @@ -24,6 +29,8 @@ def get_requirements():
author_email="[email protected]",
packages=find_packages(where="src"),
package_dir={"": "src"},
long_description=get_long_description(),
long_description_content_type="text/markdown",
include_package_data=True,
package_data={"": ["*.misc"]},
python_requires=">=3.8",
Expand Down

0 comments on commit 98b2561

Please sign in to comment.