15924: Update github links to arvados org.
[arvados.git] / sdk / cwl / setup.py
1 #!/usr/bin/env python
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: Apache-2.0
5
6 from __future__ import absolute_import
7 import os
8 import sys
9
10 from setuptools import setup, find_packages
11
12 SETUP_DIR = os.path.dirname(__file__) or '.'
13 README = os.path.join(SETUP_DIR, 'README.rst')
14
15 import arvados_version
16 version = arvados_version.get_version(SETUP_DIR, "arvados_cwl")
17 if os.environ.get('ARVADOS_BUILDING_VERSION', False):
18     pysdk_dep = "=={}".format(version)
19 else:
20     # On dev releases, arvados-python-client may have a different timestamp
21     pysdk_dep = "<={}".format(version)
22
23 setup(name='arvados-cwl-runner',
24       version=version,
25       description='Arvados Common Workflow Language runner',
26       long_description=open(README).read(),
27       author='Arvados',
28       author_email='info@arvados.org',
29       url="https://arvados.org",
30       download_url="https://github.com/arvados/arvados.git",
31       license='Apache 2.0',
32       packages=find_packages(),
33       package_data={'arvados_cwl': ['arv-cwl-schema-v1.0.yml', 'arv-cwl-schema-v1.1.yml']},
34       scripts=[
35           'bin/cwl-runner',
36           'bin/arvados-cwl-runner',
37       ],
38       # Note that arvados/build/run-build-packages.sh looks at this
39       # file to determine what version of cwltool and schema-salad to build.
40       install_requires=[
41           'cwltool==1.0.20190831161204',
42           'schema-salad==4.5.20190815125611',
43           'typing >= 3.6.4',
44           'ruamel.yaml >=0.15.54, <=0.15.77',
45           'arvados-python-client{}'.format(pysdk_dep),
46           'setuptools',
47           'ciso8601 >= 2.0.0',
48           'networkx < 2.3'
49       ],
50       extras_require={
51           ':os.name=="posix" and python_version<"3"': ['subprocess32 >= 3.5.1'],
52           ':python_version<"3"': ['pytz'],
53       },
54       data_files=[
55           ('share/doc/arvados-cwl-runner', ['LICENSE-2.0.txt', 'README.rst']),
56       ],
57       classifiers=[
58           'Programming Language :: Python :: 2',
59           'Programming Language :: Python :: 3',
60       ],
61       test_suite='tests',
62       tests_require=[
63           'mock>=1.0',
64           'subprocess32>=3.5.1',
65       ],
66       zip_safe=True
67       )