-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
83 lines (78 loc) · 2.1 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
[build-system]
requires = [
"setuptools",
"setuptools-scm",
"cython"
]
build-backend = "setuptools.build_meta"
py_modules=["ppanggolin"]
[project]
name = "PPanGGOLiN"
description = "Pangenome analysis suite"
dynamic = ["version"]
authors = [
{name = "Guillaume Gautreau"},
{name = "Adelme Bazin"},
{name = "Jérôme Arnoux", email = "jarnoux@genoscope.cns.fr"},
{name = "Jean Mainguy"},
]
maintainers = [
{name = "Guillaume Gautreau"},
{name = "Adelme Bazin"},
{name = "Jérôme Arnoux", email = "jarnoux@genoscope.cns.fr"},
{name = "Jean Mainguy"},
]
readme = "README.md"
keywords = ["Pangenomics", "Comparative genomics", "Bioinformatics", "Prokaryote"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"]
requires-python = ">=3.8"
license = {file="LICENSE.txt"}
[project.optional-dependencies]
doc = [
"sphinx==6.2.1",
"sphinx_rtd_theme==1.2.2",
"readthedocs-sphinx-search==0.3.2",
"sphinx-autobuild==2021.3.14",
"myst-parser==2",
"docutils==0.18.1",
"sphinxcontrib.mermaid==0.9.2",
]
test = [
"pytest==7",
"black==24.*"
]
python_deps = [
"tqdm==4.*",
"tables==3.*",
"pyrodigal==3.*",
"networkx==3.*",
"scipy==1.*",
"plotly==5.*",
"gmpy2==2.*",
"pandas==2.*",
"numpy==1.24",
"bokeh==3.*"
]
#
[project.urls]
Homepage = "https://labgem.genoscope.cns.fr/2023/04/27/ppanggolin/"
Repository = "https://github.com/labgem/PPanGGOLiN/"
Documentation = "https://ppanggolin.readthedocs.io"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
#
[project.scripts]
ppanggolin = "ppanggolin.main:main"
[tool.setuptools]
packages = ["ppanggolin"]
#[tool.setuptools.package-data]
#mypkg = ["*.txt", "*.rst"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}