-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
96 lines (82 loc) · 2.3 KB
/
pyproject.toml
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
91
92
93
94
95
96
[project]
name = "genome_uploader"
version = "2.1.1"
readme = "README.md"
authors = [
{name = "MGnify team", email = "[email protected]"},
]
license = {text = "Apache Software License 2.0"}
keywords = ["bioinformatics", "tool", "metagenomics"]
description = "Python script to upload bins and MAGs in fasta format to ENA (European Nucleotide Archive). This script generates xmls and manifests necessary for submission with webin-cli."
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests==2.26.0",
"pandas==1.4.1",
"python-dotenv==1.0.1",
"numpy==1.24.4"
]
[project.urls]
Homepage = "https://github.com/EBI-Metagenomics/genome_uploader"
Issues = "https://github.com/EBI-Metagenomics/genome_uploader/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
[project.optional-dependencies]
dev = [
"pre-commit==3.3.3",
"black==23.7.0",
"ruff==v0.0.286",
"isort==5.12.0",
"bump-my-version==0.9.2",
]
test = [
"pytest==7.4.0",
"pytest-md==0.2.0",
"pytest-workflow==2.0.1",
"pytest-cov==3.0.0",
]
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["genomeuploader"]
[project.scripts]
genome_upload = "genomeuploader.genome_upload:main"
[tool.ruff]
ignore = [
"RUF001", # ruff-specific rules ambiguous-unicode-character-string
"S101", # flake8-bandit assert
"S308", # flake8-bandit suspicious-mark-safe-usage
"E501", # pycodestyle line-too-long
]
[tool.ruff.flake8-pytest-style]
fixture-parentheses = false
mark-parentheses = false
[tool.ruff.isort]
forced-separate = ["conftest"]
force-single-line = true
[tool.black]
line-length = 140
target-version = ["py38"]
[tool.isort]
profile = "black"
[tool.bumpversion]
current_version = "0.9.0"
commit = true
tag = true
[tool.bumpversion.files]
filename = "genomeuploader/__init__.py"