-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.15 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dca"
version = "1.4.0"
description = "A Python implementation of mean-field Direct Coupling Analysis, adapted from the dca.m script from http://dca.rice.edu/portal/dca/."
authors = [
{ name = "Jonathan Martin", email = "jonathan.martin3@utdallas.edu" },
]
license = { text = "MIT" }
readme = "README.md"
keywords = ["DCA", "Machine Learning", "Potts", "Proteins"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = [
"matplotlib",
"numba",
"numpy",
"biopython",
"scipy",
"pyhmmer; sys_platform != 'win32'",
]
[project.optional-dependencies]
unix = ["pyhmmer"]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = [
"dca*",
] # package names should match these glob patterns (["*"] by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.urls]
Homepage = "https://github.com/utdal/py-mfdca/"