Skip to content

Commit

Permalink
Merge pull request #205 from bluesky/202-pypi-project-description
Browse files Browse the repository at this point in the history
provide project description for PyPI
  • Loading branch information
mrakitin authored Sep 16, 2021
2 parents 3cadd1b + 8981cb9 commit 1b5d1a8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
import versioneer


desc = "Controls for using diffractometers within the Bluesky Framework"
desc += ": https://blueskyproject.io"
with open("README.md", "r") as f:
long_desc = f.read()

setup(
name="hklpy",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Controls for using diffractometers within the Bluesky Framework: https://blueskyproject.io",
description=desc,
long_description=long_desc,
long_description_content_type="text/markdown",
maintainer="prjemian",
maintainer_email="prjemian+hklpy@gmail.com",
url="https://github.com/bluesky/hklpy",
Expand Down

0 comments on commit 1b5d1a8

Please sign in to comment.