-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpipeline_example.ini
77 lines (56 loc) · 2.71 KB
/
pipeline_example.ini
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Configuration file for packaging and rst files
# These are user specific settings
# See:
# https://docs.python.org/3.4/library/configparser.html
# All key = value pairs are treated as strings
# Values in this file get copied across to other files such as setup.py and key = values can also be used in rst files.
# For substitution in rst files see for example:
# http://stackoverflow.com/questions/10030149/how-do-i-output-a-config-value-in-a-sphinx-rst-file
# http://www.sphinx-doc.org/en/stable/ext/extlinks.html
# http://stackoverflow.com/questions/7250659/python-code-to-generate-part-of-sphinx-documentation-is-it-possible?rq=1
# http://stackoverflow.com/questions/42158111/variable-substitution-not-working-properly-in-sphinx?rq=1
# Many arguments for setup.py can be specified here. Check both files and the 'official' tutorial though:
# https://python-packaging.readthedocs.io/en/latest/index.html
###############
[metadata]
# The following is mainly for setup.py:
project_name = pipeline_example
author_name = Antonio J Berlanga-Taylor
date = 30 July 2017
project_url = https://github.com/AntonioJBT/pipeline_example
download_url = https://github.com/AntonioJBT/pipeline_example.git
author_email = [email protected]
license = GPL-3.0
short_description = minimal examples to run python pipelines with CGAT, Ruffus and drmaa
license_year = 2019
keywords = computational pipelines, CGAT, Python, Ruffus, drmaa
# long_description is read from README.rst within setup.py
long_description =
# The same version is used for pipelines, scripts and project:
# This is easier to edit directly in the file version.py
classifiers = """
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved
Programming Language :: Python
Topic :: Software Development
Topic :: Scientific/Engineering
Topic :: Utilities
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
# setup.py uses find_packages() instead
#packages = %(project_name)s
# This is then converted to a list within setup.py.
# To test: use comma separated elements to pass if more than one, e.g.pack_a,pack_b,pack_c
# Otherwise just edit setup.py and pass directly there to avoid problems as this is designed for simple packages.
# If the package layout is not conventional you need to specify it. Edit setup.oy directly if needed though.
#package_dirs =
platforms = 'any'
# Consider adding:
#github_username = AntonioJBT
#folders_to_create = data,code,results,manuscript,external_data
#python_namespace =
###############