File: setup.py

package info (click to toggle)
python-wdlparse 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 924 kB
  • sloc: python: 16,410; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 528 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

install_requires = [
      "antlr4-python3-runtime==4.8",
]

dev_requires = [
      "hermes-parser==2.0rc6",
]

setup(name='wdlparse',
      version='0.1.0',
      description='WDL parsers for Python.',
      url='https://github.com/DataBiosphere/wdl-parsers',
      author='William Gao',
      author_email='wlgao@ucsc.edu',
      license="Apache License v2.0",
      packages=find_packages('.'),
      install_requires=install_requires,
      extras_require={'dev': dev_requires})