-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (26 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bigecyhmm"
dynamic = ["version"]
readme = "README.md"
description = "Predict biogeochemical cycles from protein fasta files."
license = {text = "GPL-3.0-or-later"}
dependencies = [
'pyhmmer',
'pillow'
]
[project.scripts]
bigecyhmm = "bigecyhmm.__main__:main"
bigecyhmm_visualisation = "bigecyhmm.visualisation:main"
[project.urls]
Homepage = "https://github.com/ArnaudBelcour/bigecyhmm"
Changelog = "https://github.com/ArnaudBelcour/bigecyhmm/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ['bigecyhmm', 'bigecyhmm.hmm_databases', 'bigecyhmm.templates']
package-dir = {'bigecyhmm'= 'bigecyhmm', 'bigecyhmm.hmm_databases' = 'bigecyhmm/hmm_databases', 'bigecyhmm.templates' = 'bigecyhmm/templates'}
package-data = {'bigecyhmm.hmm_databases'= ['*.zip', '*.tsv', '*.md'], 'bigecyhmm.templates' = ['*.png']}
[tool.setuptools.dynamic]
version = { attr = "bigecyhmm.__version__" }
dependencies = {file = ["requirements.txt"]}