forked from nf-core/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
version = '1.7'
with open('README.md') as f:
readme = f.read()
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 = 'phil.ewels@scilifelab.se',
url = 'https://github.com/nf-core/tools',
license = 'MIT',
scripts = ['scripts/nf-core'],
install_requires = [
'cookiecutter',
'click',
'GitPython',
'jsonschema',
'pyyaml',
'requests',
'requests_cache',
'tabulate'
],
setup_requires=[
'twine>=1.11.0',
'setuptools>=38.6.'
],
packages = find_packages(exclude=('docs')),
include_package_data = True,
zip_safe = False
)