Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileDeBruyn authored Apr 17, 2024
1 parent e8621e4 commit adbe281
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
from setuptools import setup, find_packages
from pathlib import Path


__version__ = '1.0.0'

this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()

setup(
name='SPEADI',
version=__version__,
Expand All @@ -13,6 +18,6 @@
from Molecular Dynamics trajectories of proteins and other biomolecules.
""",
long_description_content_type="text/markdown",
long_description=README,
long_description=long_description,
url="https://github.com/FZJ-JSC/speadi",
)

0 comments on commit adbe281

Please sign in to comment.