forked from EliLillyCo/pytest-wdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.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
import codecs
import os
from setuptools import setup, find_packages
extras_require = {
"bam": ["pysam"],
"progress": ["tqdm"]
}
extras_require["all"] = [
lib
for lib_array in extras_require.values()
for lib in lib_array
]
setup(
name="pytest-wdl",
use_scm_version=True,
setup_requires=['setuptools_scm'],
description="Fixtures for pytest for running WDL workflows using Cromwell.",
long_description_content_type="text/markdown",
long_description=codecs.open(
os.path.join(
os.path.dirname(os.path.realpath(__file__)),
"README.md"
),
"rb",
"utf-8"
).read(),
entry_points={
"pytest11": [
"pytest_wdl = pytest_wdl"
],
"pytest_wdl.data_types": [
"bam = pytest_wdl.data_types.bam:BamDataFile",
"vcf = pytest_wdl.data_types.vcf:VcfDataFile",
],
"pytest_wdl.executors": [
"cromwell = pytest_wdl.executors.cromwell:CromwellExecutor"
]
},
py_modules=["pytest_wdl"],
packages=find_packages(),
install_requires=[
"pytest",
"delegator.py"
],
extras_require=extras_require
)