1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
import os
import sys
import shutil
import setuptools.command.egg_info as egg_info_cmd
from setuptools import setup, find_packages
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.rst')
try:
import gittaggers
tagger = gittaggers.EggInfoFromGit
except ImportError:
tagger = egg_info_cmd.egg_info
setup(name='cwltool',
version='1.0',
description='Common workflow language reference implementation',
long_description=open(README).read(),
author='Common workflow language working group',
author_email='common-workflow-language@googlegroups.com',
url="https://github.com/common-workflow-language/cwltool",
download_url="https://github.com/common-workflow-language/cwltool",
license='Apache 2.0',
packages=["cwltool"],
package_data={'cwltool': ['schemas/draft-2/*.yml',
'schemas/draft-3/*.yml',
'schemas/draft-3/*.md',
'schemas/draft-3/salad/schema_salad/metaschema/*.yml',
'schemas/draft-3/salad/schema_salad/metaschema/*.md',
'schemas/v1.0/*.yml',
'schemas/v1.0/*.md',
'schemas/v1.0/salad/schema_salad/metaschema/*.yml',
'schemas/v1.0/salad/schema_salad/metaschema/*.md',
'schemas/v1.1.0-dev1/*.yml',
'schemas/v1.1.0-dev1/*.md',
'schemas/v1.1.0-dev1/salad/schema_salad/metaschema/*.yml',
'schemas/v1.1.0-dev1/salad/schema_salad/metaschema/*.md',
'cwlNodeEngine.js']},
install_requires=[
'setuptools',
'requests >= 1.0',
'ruamel.yaml >= 0.12.4',
'rdflib >= 4.2.0, < 4.3.0',
'shellescape >= 3.4.1, < 3.5',
'schema-salad >= 2.2.20170111180227, < 3',
'typing >= 3.5.2, < 3.6'
],
test_suite='tests',
tests_require=[],
entry_points={
'console_scripts': [ "cwltool=cwltool.main:main" ]
},
zip_safe=True,
cmdclass={'egg_info': tagger},
)
|