Skip to content

Commit

Permalink
enh: edit setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsbck committed Sep 6, 2023
1 parent 1485fa0 commit 3d82b39
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
with open(os.path.join(here, project_slug, "__version__.py")) as f:
exec(f.read(), about)

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name=NAME,
version=about["__version__"],
Expand All @@ -37,10 +40,13 @@
exclude=["tests", "*.tests", "*.tests.*", "tests.*"],
),
description="Package to extract summary statistics from electrophysiological data.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jonas Beck",
python_requires=">=3.8",
install_requires=REQUIRES,
extras_require=EXTRAS,
tests_require=["pytest"],
include_package_data=True,
license="GPLv3",
)

0 comments on commit 3d82b39

Please sign in to comment.