-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.26 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-cdhit"
authors = [
{name = "Xiao Yuan", email = "yuanx749@gmail.com"},
]
description = "A Python interface for CD-HIT package."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["bioinformatics", "sequence-analysis"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"pandas",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pre-commit==3.3.2",
"ruff==0.6.9",
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"notebook>=6.5.4",
]
[project.urls]
Homepage = "https://yuanx749.github.io/py-cdhit/"
Documentation = "https://yuanx749.github.io/py-cdhit/"
Repository = "https://github.com/yuanx749/py-cdhit"
[tool.setuptools]
packages = ["pycdhit"]
[tool.setuptools.dynamic]
version = {attr = "pycdhit.VERSION"}
[tool.ruff]
line-length = 79
extend-exclude = ["*.ipynb"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]