Skip to content

Commit

Permalink
add long_description, needed for pypi publish
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaranville committed Oct 15, 2024
1 parent 91b8cab commit f0b7ab8
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
@@ -1,5 +1,10 @@
from setuptools import setup

# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='molgroups',
version='0.2.0a0',
Expand All @@ -9,6 +14,8 @@
author='Frank Heinrich, David Hoogerheide, Alyssa Thomas',
author_email='mail@frank-heinrich.net',
description='Molecular Modeling for Scattering Data Analysis',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
"bumps", "refl1d", "periodictable", "scipy", "numpy", "matplotlib", "pandas", "scikit-learn",
"sasmodels", "sasdata", "dill",
Expand Down

0 comments on commit f0b7ab8

Please sign in to comment.