Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: add PyPI description #93

Merged
merged 2 commits into from
Jul 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ Domain specific plotting and GUI widgets for X-ray science

Install the most recent tagged build: `conda install xray-vision -c lightsource2-tag`

Install the most recent tagged build: `conda install xray-vision -c lightsource2-dev`
Install the most recent development build: `conda install xray-vision -c lightsource2-dev`

Find the tagged recipe [here](https://github.com/NSLS-II/lightsource2-recipes/tree/master/recipes-tag/xray-vision) and the dev recipe [here](https://github.com/NSLS-II/lightsource2-recipes/tree/master/recipes-dev/xray-vision)
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,18 @@
with open('requirements.txt') as f:
requirements = f.read().split()

with open('README.md') as f:
long_description = f.read()

setup(
name='xray-vision',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Brookhaven National Lab',
author='Brookhaven National Laboratory',
description='Visualization widgets and plotting helpers targeted at X-Ray Sciences',
long_description=long_description,
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=requirements,
url='https://github.com/Nikea/xray-vision',
)