-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.33 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", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[project]
name = "colav"
# versioning through releases
description = "Calculate protein structural representations (dihedral angles, CA pairwise distances, and strain analysis) for downstream analysis (e.g., PCA, t-SNE, or UMAP)"
license = { text = "MIT License" }
authors = [
{ name="Ammaar Saeed", email="[email protected]" },
]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"jupyter",
"matplotlib",
"numpy",
"scipy",
"biopandas",
]
# extras
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-cov",
"biopandas",
"numpy",
"scipy",
]
dev = [
"black",
"pandas",
"biopandas",
"pytest",
"pytest-cov",
]
docs = [
"sphinx",
"myst_parser",
"sphinx_rtd_theme",
"nbsphinx",
]
[project.urls]
homepage = "https://hekstra-lab.github.io/colav/"
repository = "https://github.com/Hekstra-Lab/colav/"