-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
63 lines (52 loc) · 2.18 KB
/
setup.py
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
61
62
63
# Copyright 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Beam pipelines for processing variants based on VCF files."""
from distutils.command.build import build as _build
import setuptools
class build(_build): # pylint: disable=invalid-name
"""A build command class that will be invoked during package install.
The package built using the current setup.py will be staged and later
installed in the worker using `pip install package'. This class will be
instantiated during install for this specific scenario and will trigger
running the custom commands specified.
"""
setuptools.setup(
name='gcp_variant_transforms',
version='0.11.0',
description=('Tool for transforming and processing VCF files in a '
'scalable manner based on Apache Beam'),
author='Google',
license='Apache 2.0',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers for the list
# of values.
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: System :: Distributed Computing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
test_suite='nose.collector',
packages=setuptools.find_packages(),
package_data={
'gcp_variant_transforms': ['gcp_variant_transforms/testing/testdata/*']
},
cmdclass={
# Command class instantiated and run during pip install scenarios.
'build': build,
},
)