forked from cogent3/ensembl_tui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
143 lines (134 loc) · 3.47 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ensembl_lite"
description = """Ensembl cli tools"""
version = "2023.7.9a1"
authors = [
{ name = "Gavin Huttley", email = "[email protected]"},
]
keywords = ["biology", "genomics", "evolution", "bioinformatics"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">3.10,<3.12"
dependencies = ["blosc2",
"click",
"scitrack",
"typing_extensions",
"cogent3 @ git+https://github.com/cogent3/cogent3.git@develop",
"rich",
"numba",
"numpy",
"trogon",
"unsync",
"wakepy>0.7",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Documentation = "https://github.com/cogent3/EnsemblLite"
"Bug Tracker" = "https://github.com/cogent3/EnsemblLite/issues"
"Source Code" = "https://github.com/cogent3/EnsemblLite"
[project.scripts]
elt = "ensembl_lite.cli:main"
[project.optional-dependencies]
test = [
"black==23.3.0",
"isort==5.12.0",
"click==8.1.3", # black needs this pinned
"pytest",
"pytest-cov",
"pytest-xdist",
"nox"]
doc = ["click==8.1.3",
"sphinx",
"sphinx-autobuild",
"sphinx>=1.6",
"sphinx_book_theme",
"sphinx_design",
"sphinxcontrib-bibtex"]
dev = ["black==23.3.0",
"click==8.1.3",
"cogapp",
"flit",
"ipykernel",
"ipython",
"ipywidgets",
"isort==5.12.0",
"jupyter-sphinx",
"jupyter_client",
"jupyterlab",
"jupytext",
"kaleido",
"nbconvert>5.4",
"nbformat",
"nbsphinx",
"nox",
"numpydoc",
"pandas",
"pillow",
"plotly",
"psutil",
"pytest",
"pytest-cov",
"pytest-xdist",
"scriv",
"sphinx",
"sphinx-autobuild",
"sphinx_book_theme",
"sphinx_design",
"sphinxcontrib-bibtex"]
[tool.flit.sdist]
include = ["doc/", "requirements.txt", "src/*", "pyproject.toml"]
exclude = ["doc/*.html"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"internet: marks tests that require internet access (deselect with '-m \"not internet\"')"
]
norecursedirs = ["doc", ".nox", "working"]
addopts = ["--strict-config"]
testpaths = "tests"
[tool.black]
line-length = 88
target-version = ["py310"]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.venv
| _build
| build
| dist
| tests/data
)/
'''
[tool.isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
lines_after_imports=2
lines_between_types=1
multi_line_output=3
use_parentheses=true
src_paths = ["src", "tests","doc","noxfile.py"]
[tool.scriv]
format="md"
categories=["Contributors", "ENH", "BUG", "DOC", "Deprecations", "Discontinued"]
output_file="changelog.md"
version="literal: src/cogent3/__init__.py:__version__"
skip_fragments="README.*"
new_fragment_template="file: changelog.d/templates/new.md.j2"
entry_title_template="file: changelog.d/templates/title.md.j2"