-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "seqdd"
version = "0.0"
authors = [
{ name="Yoann Dufresne", email="[email protected]" },
]
description = "A package to share andd download a biological sequence dataset using register files. It's goal is to simplify the download process while improving the reproducibility."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Environment :: Console",
"Development Status :: 3 - Alpha"
]
[project.optional-dependencies]
dev = [
'sphinx',
'sphinx_rtd_theme',
'sphinx-autodoc-typehints',
'coverage',
'ruff'
]
[project.urls]
Homepage = "https://github.com/yoann-dufresne/seqdd"
Issues = "https://github.com/yoann-dufresne/seqdd/issues"
[project.scripts]
seqdd = "seqdd.__main__:main"
[tool.coverage.run]
branch = true
include = ["seqdd/*"]
command_line = "-m unittest discover -vv -s tests"
[tool.ruff]
# Exclude a variety of commonly ignored directories.
exclude = [
".eggs",
".git",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".venv",
"__pypackages__",
"_build",
"build",
"dist",
"site-packages",
"venv",
]
# Same as Black.
line-length = 120
indent-width = 4
src = ['seqdd', 'tests']
[tool.ruff.format]
indent-style = "space"