-
Notifications
You must be signed in to change notification settings - Fork 190
/
setup.py
43 lines (38 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import find_packages, setup
version = "3.0.2"
with open("README.md") as f:
readme = f.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="nf-core",
version=version,
description="Helper tools for use with nf-core Nextflow pipelines.",
long_description=readme,
long_description_content_type="text/markdown",
keywords=[
"nf-core",
"nextflow",
"bioinformatics",
"workflow",
"pipeline",
"biology",
"sequencing",
"NGS",
"next generation sequencing",
],
author="Phil Ewels",
author_email="[email protected]",
url="https://github.com/nf-core/tools",
license="MIT",
entry_points={
"console_scripts": ["nf-core=nf_core.__main__:run_nf_core"],
"refgenie.hooks.post_update": ["nf-core-refgenie=nf_core.pipelines.refgenie:update_config"],
},
python_requires=">=3.8, <4",
install_requires=required,
packages=find_packages(exclude=("docs")),
include_package_data=True,
zip_safe=False,
)