Skip to content

Commit

Permalink
Fix setup.py (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
dinvlad authored Apr 19, 2024
1 parent 5957687 commit 5174f1f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions server/setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
import os

from setuptools import find_packages, setup

cwd = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(cwd, '..', 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='wdl-lsp',
author='Broad Institute',
description='Language Server Protocol (LSP) implementation for Workflow Definition Language (WDL)',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD 3-clause "New" or "Revised" License',
url='https://github.com/broadinstitute/wdl-ide',
classifiers=[
Expand Down

0 comments on commit 5174f1f

Please sign in to comment.