-
Notifications
You must be signed in to change notification settings - Fork 75
/
pyproject.toml
64 lines (59 loc) · 1.42 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "evcouplings"
version = "0.3.0"
description = "A Framework for evolutionary couplings analysis"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Thomas Hopf", email = "[email protected]" },
]
keywords = [
"analysis",
"couplings",
"evolutionary",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"billiard",
"biopython>=1.84",
"bokeh",
"click",
"filelock",
"jinja2",
"matplotlib",
"msgpack",
"numba",
"numpy",
"pandas",
"psutil",
"requests",
"ruamel.yaml<0.18",
"scikit-learn",
"scipy",
"seaborn",
"setuptools>=18.2",
]
[project.scripts]
evcouplings = "evcouplings.utils.app:app"
evcouplings_dbupdate = "evcouplings.utils.update_database:app"
evcouplings_runcfg = "evcouplings.utils.pipeline:app"
evcouplings_summarize = "evcouplings.utils.summarize:app"
[project.urls]
Homepage = "https://github.com/debbiemarkslab/EVcouplings"
[tool.hatch.version]
path = "evcouplings/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/evcouplings",
]