Newer
Older
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
78
79
80
81
82
83
84
85
86
87
88
89
90
#Build system backend to create package to upload on pypi
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=68.2.0",
"setuptools_scm[toml]>=8.0.0",
"build>=1.0.0"
]
# configuration of setuptools_scm to use tag version autoincrementation
# used last TAG version dernier
[tool.setuptools_scm]
write_to = "frangiPANe/_version.py" #TODO: SEB 17/11 => creer automatiquement mais à ajouter dans .gitignore
version_scheme = "release-branch-semver"
tag_regex = "^(\\d.\\d.\\d)-*\\w*\\d*$"
local_scheme = "no-local-version"
# define Project settings
[project]
name = "frangiPANe" #"culebrONT"
dynamic = ["version"]
description = """blablabla"""
authors = [
{ name = "Tranchant-Dubreuil Christine (IRD)", email = "christine.tranchant@ird.fr" },
]
maintainers = [
{ name = "Tranchant-Dubreuil Christine (IRD)", email = "christine.tranchant@ird.fr" },
]
dependencies = ["pandas", #TODO: SEB 17/11 => actualiser avec packages python / rules etc.
"matplotlib",
"tabulate",
"ipython",
"biopython",
"pysam",
"numpy",
"snakecdysis>=0.1.0",
"setuptools>=68.2.0",
"nbformat"
]
requires-python = ">=3.8"
readme = "README.rst"
license = { file = "LICENCE" }
keywords = ["snakemake", "assembly", "workflow", "HPC"]
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'License :: CeCILL-C Free Software License Agreement (CECILL-C)',
'License :: Free for non-commercial use',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: R',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Assemblers'
]
[project.urls]
Homepage = "https://forge.ird.fr/diade/culebront_pipeline"
Downloads = "https://forge.ird.fr/diade/culebront_pipeline/archive/"
"Bug Tracker" = "https://forge.ird.fr/diade/culebront_pipeline/issues"
Documentation = "https://snakecdysis.readthedocs.io/en/latest/"
"Source Code" = "https://forge.ird.fr/diade/culebront_pipeline"
[project.optional-dependencies]
dev = [
"sphinx_click",
"sphinx_copybutton",
"sphinx_rtd_theme",
"tox",
]
# setup scripts links
[project.scripts]
culebrONT = "culebrONT.main:main"
[project.entry-points.culebrONT]
culebrONT = "__init__"
# Try to link sphinx to file
[tool.sphinx]
source-dir = "docs/source"
build-dir = "docs/build"
config-dir = "docs/source"