Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
32 lines (29 sloc) 709 Bytes
from setuptools import setup
version = '1.0.22'
long_description = 'Parse and Process WDL Files'
setup(
name='wdl',
version=version,
description=long_description,
author='Scott Frazer',
author_email='sfrazer@broadinstitute.org',
packages=['wdl'],
install_requires=[
"xtermcolor",
"pytest"
],
scripts={
'scripts/wdl',
'scripts/wdl2dot'
},
license = 'MIT',
keywords = "Workflow, Task",
url = "http://github.com/broadinstitute/wdl",
classifiers=[
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English"
]
)