-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools >= 80.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CAGEcleaner"
version = "1.5.2"
description = "Redundancy removal tool for gene cluster mining hit sets"
authors = [
{name = "Lucas De Vrieze", email = "lucas.devrieze@kuleuven.be"},
{name = "Miguel Biltjes", email = "miguel.biltjes@kuleuven.be"}
]
maintainers = [
{name = "Lucas De Vrieze", email = "lucas.devrieze@kuleuven.be"},
{name = "Miguel Biltjes", email = "miguel.biltjes@kuleuven.be"}
]
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"scipy <=1.14.1",
"biopython",
"cblaster >=1.4.0",
"pandas <3.0.0",
"skder >=1.3.4",
"networkx",
]
readme = "README.md"
requires-python = ">=3.12.0"
license = {text = "MIT"}
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
[project.scripts]
cagecleaner = "cagecleaner.main:main"
cagecleaner-generate-session = "cagecleaner.generate_session:main"
[tool.setuptools.packages.find]
include = ["cagecleaner*"]