-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (64 loc) · 1.9 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
[build-system]
requires = ["setuptools >= 75.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "SchemaRefinery"
version = "0.3.2.4"
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.24.3, <2.0.0",
"scipy >= 1.10.1",
"biopython >= 1.79",
"plotly >= 5.8.0",
"requests >= 2.27.1",
"pandas >= 1.5.1",
"psutil >= 5.1.1",
"tqdm >= 4.62.0",
"networkx >= 2.6.0, <3.0.0"
]
authors = [
{name = "Mykyta Forofontov"},
{name = "Rafael Mamede"},
{name = "Mário Ramirez"},
]
maintainers = [
{name = "UMMI", email = "[email protected]"}
]
description = "Tool to refine cg/wgMLST Schemas"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"bioinformatics",
"genomics",
"mlst",
"bacteria",
"cgmlst",
"wgmlst",
"outbreak detection",
"allele calling",
"bacterial typing",
"bacterial genome analysis"
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: Unix',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
[project.scripts]
"SchemaRefinery" = "SchemaRefinery.schema_refinery:entry_point"
"SR" = "SchemaRefinery.schema_refinery:entry_point"
[project.urls]
Repository = "https://github.com/B-UMMI/Schema_Refinery"
Documentation = "https://schema-refinery.readthedocs.io/en/latest/index.html#"
Changelog = "https://github.com/B-UMMI/Schema_Refinery/blob/main/CHANGELOG.md"